From 37ef74c5847ed7c677b0d73699c4bdcaa925973b Mon Sep 17 00:00:00 2001 From: Sylvain Corlay Date: Fri, 31 Mar 2017 20:21:08 +0200 Subject: [PATCH] Wrong msvc version --- include/pybind11/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/pybind11/common.h b/include/pybind11/common.h index 92b69f5dd..e420f73e9 100644 --- a/include/pybind11/common.h +++ b/include/pybind11/common.h @@ -50,7 +50,7 @@ #elif defined(_MSC_VER) // Pybind hits various compiler bugs in 2015u2 and earlier, and also makes use of some stl features // (e.g. std::negation) added in 2015u3: -# if _MSC_FULL_VER < 190024213 +# if _MSC_FULL_VER < 190024210 # error pybind11 requires MSVC 2015 update 3 or newer # endif #endif