Build: Use override/final keywords for VS 2012 and newer. (VS 2013 still defines __cplusplus as 199711L)

This commit is contained in:
Shauren
2014-01-31 23:30:25 +01:00
parent b054275fb2
commit 19172ee4c2

View File

@@ -57,6 +57,8 @@
#if defined(__cplusplus) && __cplusplus == 201103L
# define COMPILER_HAS_CPP11_SUPPORT 1
#elif _MSC_VER >= 1700
# define COMPILER_HAS_CPP11_SUPPORT 1
#else
# define COMPILER_HAS_CPP11_SUPPORT 0
#endif