1
0
Fork 0

Fix a MSVC warning at W4

Warning is C4512 (assignment operator could not be generated)

Now, apart the foreign syzygy code, everything compiles
without warnings at warning level 4.

No functional change.
pull/268/head
Marco Costalba 2015-01-19 08:11:43 +01:00
parent 712bbb052e
commit ca3622f8e8
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ struct Endgame : public EndgameBase<T> {
T operator()(const Position&) const;
private:
const Color strongSide, weakSide;
Color strongSide, weakSide;
};