Fix description of Score enum

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Marco Costalba
2009-12-26 18:16:38 +01:00
parent ef58551a2d
commit ba07b95ee0

View File

@@ -52,8 +52,9 @@ enum Value {
}; };
/// Score struct keeps a midgame and an endgame value in a single /// Score enum keeps a midgame and an endgame value in a single
/// ScoreValue 64 bit union. /// integer (enum), first LSB 16 bits are used to store endgame
/// value, while upper bits are used for midgame value.
enum Score {}; enum Score {};