diff options
-rw-r--r-- | src/pugixml.hpp | 2 | ||||
-rw-r--r-- | tests/test_version.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pugixml.hpp b/src/pugixml.hpp index 1a5d685..e19a4a3 100644 --- a/src/pugixml.hpp +++ b/src/pugixml.hpp @@ -13,7 +13,7 @@ #ifndef PUGIXML_VERSION // Define version macro; evaluates to major * 100 + minor so that it's safe to use in less-than comparisons -# define PUGIXML_VERSION 120 +# define PUGIXML_VERSION 140 #endif // Include user configuration file (this can define various configuration macros) diff --git a/tests/test_version.cpp b/tests/test_version.cpp index 6fbfe1b..622a100 100644 --- a/tests/test_version.cpp +++ b/tests/test_version.cpp @@ -1,5 +1,5 @@ #include "../src/pugixml.hpp"
-#if PUGIXML_VERSION != 120
+#if PUGIXML_VERSION != 140
#error Unexpected pugixml version
#endif
|