From 0716ca1619c3bef5e3f33857997f724ccda85e4d Mon Sep 17 00:00:00 2001 From: Arthur LAURENT Date: Thu, 31 Oct 2024 18:03:20 +0100 Subject: [PATCH] improve some comments --- src/pugixml.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pugixml.hpp b/src/pugixml.hpp index f7c8ed9a..6d483699 100644 --- a/src/pugixml.hpp +++ b/src/pugixml.hpp @@ -140,7 +140,6 @@ # endif #endif -// If C++ is 2011 or higher, add 'constexpr' qualifiers #ifndef PUGIXML_CONSTEXPR11 # if __cplusplus >= 201103 # define PUGIXML_CONSTEXPR11 constexpr @@ -151,7 +150,8 @@ # endif #endif -// If C++ is 2017 or higher, add 'inline' qualifiers for constants +// If C++ is 2011 or higher, add 'constexpr' qualifiers to constants +// If C++ is 2017 or higher, add 'inline' qualifiers to constants // required for C++20 module #ifndef PUGIXML_CONSTANT # if __cplusplus >= 201703