We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4356d9b + 55176b2 commit 43203f1Copy full SHA for 43203f1
include/json/config.h
@@ -80,7 +80,9 @@
80
// In c++11 the override keyword allows you to explicity define that a function
81
// is intended to override the base-class version. This makes the code more
82
// managable and fixes a set of common hard-to-find bugs.
83
-#if __cplusplus >= 201103L
+#if __cplusplus >= 201103L
84
+# define JSONCPP_OVERRIDE override
85
+#elif defined(_MSC_VER) && _MSC_VER > 1600
86
# define JSONCPP_OVERRIDE override
87
#else
88
# define JSONCPP_OVERRIDE
0 commit comments