From 712bbb052eb19f04d184da3d9ba66ae11f565201 Mon Sep 17 00:00:00 2001 From: Marco Costalba Date: Sun, 18 Jan 2015 15:14:05 +0100 Subject: [PATCH 1/1] Fix compile error with MSVC 2013 Without this std::min chokes with windows 'min' macro. No functional change. --- src/syzygy/tbprobe.cpp | 2 ++ 1 file changed, 2 insertions(+) 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" -- 2.39.2