From 514478d1f8fad73249a1ab6aab63450ab7723084 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Sat, 28 Jul 2018 08:08:45 -0700 Subject: [PATCH] Fix version comment; 190 = 1.9.0 (major.minor.patch) Fixes #224. --- src/pugixml.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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