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