From: Marco Costalba Date: Sun, 18 Jan 2015 14:14:05 +0000 (+0100) Subject: Fix compile error with MSVC 2013 X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=712bbb052eb19f04d184da3d9ba66ae11f565201;hp=fe4fda474fb8b0cb582c8232be602e2d323c87eb 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 0abd2b2e..126fe91c 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"