From f2616bcd178d98e391d0e360b4d3e85b21b6722d Mon Sep 17 00:00:00 2001 From: Ed Catmur Date: Thu, 16 Feb 2017 16:30:52 +0000 Subject: [PATCH] Correct preprocessor condition to match below --- include/boost/type_index/stl_type_index.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/type_index/stl_type_index.hpp b/include/boost/type_index/stl_type_index.hpp index 4041753..dc43c65 100644 --- a/include/boost/type_index/stl_type_index.hpp +++ b/include/boost/type_index/stl_type_index.hpp @@ -40,7 +40,7 @@ #include #include -#if !(_MSC_VER > 1600 || (__GNUC__ == 4 && __GNUC_MINOR__ > 5 && defined(__GXX_EXPERIMENTAL_CXX0X__))) +#if !((defined(_MSC_VER) && _MSC_VER > 1600) || (__GNUC__ == 4 && __GNUC_MINOR__ > 5 && defined(__GXX_EXPERIMENTAL_CXX0X__))) # include #endif