Fix compile error with MSVC 2013
authorMarco Costalba <mcostalba@gmail.com>
Sun, 18 Jan 2015 14:14:05 +0000 (15:14 +0100)
committerMarco Costalba <mcostalba@gmail.com>
Sun, 18 Jan 2015 14:14:05 +0000 (15:14 +0100)
Without this std::min chokes with windows 'min' macro.

No functional change.

src/syzygy/tbprobe.cpp

index 0abd2b2..126fe91 100644 (file)
@@ -7,6 +7,8 @@
   this code to other chess engines.
 */
 
+#define NOMINMAX
+
 #include <algorithm>
 
 #include "../position.h"