aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2018-07-28 08:08:45 -0700
committerArseny Kapoulkine <arseny.kapoulkine@gmail.com>2018-07-28 08:08:45 -0700
commit514478d1f8fad73249a1ab6aab63450ab7723084 (patch)
treee08b5f2d99c18648e499f0070c36ac5211560bc9
parentf3139f4c0487a7455d66d4dcd3b0aab3d54c63d1 (diff)
downloadpugixml-514478d1f8fad73249a1ab6aab63450ab7723084.zip
pugixml-514478d1f8fad73249a1ab6aab63450ab7723084.tar.gz
pugixml-514478d1f8fad73249a1ab6aab63450ab7723084.tar.bz2
Fix version comment; 190 = 1.9.0 (major.minor.patch)
Fixes #224.
-rw-r--r--src/pugixml.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pugixml.hpp b/src/pugixml.hpp
index 86403be..19ace6e 100644
--- a/src/pugixml.hpp
+++ b/src/pugixml.hpp
@@ -12,7 +12,7 @@
*/
#ifndef PUGIXML_VERSION
-// Define version macro; evaluates to major * 100 + minor so that it's safe to use in less-than comparisons
+// Define version macro; evaluates to major * 100 + minor * 10 + patch so that it's safe to use in less-than comparisons
# define PUGIXML_VERSION 190
#endif