From d40c7fb56bdd078a1830c20387a89e6c2616b5f0 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sat, 1 Oct 2016 05:17:02 -0400 Subject: [PATCH] Fix compile under Visual Studio 2008 --- stdcpp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stdcpp.h b/stdcpp.h index 919e7b53..ee242ada 100644 --- a/stdcpp.h +++ b/stdcpp.h @@ -46,9 +46,9 @@ namespace std { #include // uintptr_t and ptrdiff_t -#if (__cplusplus < 201103L) && (!defined(_MSC_VER) || (_MSC_VER >= 1400)) +#if (__cplusplus < 201103L) && (!defined(_MSC_VER) || (_MSC_VER >= 1600)) # include -#elif defined(_MSC_VER) && (_MSC_VER < 1400) +#elif defined(_MSC_VER) && (_MSC_VER < 1600) # include #endif