From: Marco Costalba Date: Sun, 18 Jan 2015 14:14:05 +0000 (+0100) Subject: Fix compile error with MSVC 2013 X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=712bbb052eb19f04d184da3d9ba66ae11f565201;p=fairystockfish.git Fix compile error with MSVC 2013 Without this std::min chokes with windows 'min' macro. No functional change. --- diff --git a/src/syzygy/tbprobe.cpp b/src/syzygy/tbprobe.cpp index 0abd2b2..126fe91 100644 --- a/src/syzygy/tbprobe.cpp +++ b/src/syzygy/tbprobe.cpp @@ -7,6 +7,8 @@ this code to other chess engines. */ +#define NOMINMAX + #include #include "../position.h"