From d57ccaf95308c42a3907b9e4064d733366ed6e7f Mon Sep 17 00:00:00 2001 From: Arthur LAURENT Date: Thu, 31 Oct 2024 18:05:38 +0100 Subject: [PATCH] improve some comments --- src/pugixml.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pugixml.hpp b/src/pugixml.hpp index 25fec2d1..689cb39f 100644 --- a/src/pugixml.hpp +++ b/src/pugixml.hpp @@ -152,7 +152,7 @@ // 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 +// inline constexpr is required for C++20 module #ifndef PUGIXML_CONSTANT # if __cplusplus >= 201703 # define PUGIXML_CONSTANT inline PUGIXML_CONSTEXPR11