1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-04-30 08:43:09 +00:00

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.

Backported from C++11 branch.

No functional change.
This commit is contained in:
Marco Costalba 2015-01-19 08:11:43 +01:00
parent 5154ac9cff
commit 8ebf30d44a

View file

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