diff options
author | Peter Powell <petpow@saberuk.com> | 2013-05-20 23:51:45 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-05-20 23:51:45 -0400 |
commit | 994787e907cee7f6ed1b8f0ddbec95900a0f470a (patch) | |
tree | 2df6751f7916d48369510f8b83cde08b24fcf52c /include | |
parent | 0d95204c9848a56b02a1aca717ddca7f5e60e5a6 (diff) |
Fix msvc detection of variadic template support
Diffstat (limited to 'include')
-rw-r--r-- | include/compat.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 |