From 994787e907cee7f6ed1b8f0ddbec95900a0f470a Mon Sep 17 00:00:00 2001 From: Peter Powell Date: Mon, 20 May 2013 23:51:45 -0400 Subject: Fix msvc detection of variadic template support --- include/compat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/compat.h b/include/compat.h index 41ae1bbaa..ffb0d0bdd 100644 --- a/include/compat.h +++ b/include/compat.h @@ -85,7 +85,7 @@ # if defined __GXX_EXPERIMENTAL_CXX0X__ # define HAS_CXX11_VARIADIC_TEMPLATES # endif -#elif _MSC_VER >= 1700 +#elif _MSC_FULL_VER >= 170051025 # define HAS_CXX11_VARIADIC_TEMPLATES #endif -- cgit v1.2.3