From fe0088a09a60d09fe7e86c50556f5cdbd1c7dca5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Brandl=2C=20Matth=C3=A4us=20=28MBR=29?= Date: Sat, 3 Mar 2018 11:22:06 +0100 Subject: [PATCH] Removes explicit noexcept(false) from PUGIXML_NOEXCEPT_IF_NOT_COMPACT due to review comment --- src/pugixml.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pugixml.hpp b/src/pugixml.hpp index 4e4bbb6..dc887a9 100644 --- a/src/pugixml.hpp +++ b/src/pugixml.hpp @@ -92,7 +92,7 @@ #ifdef PUGIXML_HAS_NOEXCEPT # define PUGIXML_NOEXCEPT noexcept # ifdef PUGIXML_COMPACT -# define PUGIXML_NOEXCEPT_IF_NOT_COMPACT noexcept(false) +# define PUGIXML_NOEXCEPT_IF_NOT_COMPACT # else # define PUGIXML_NOEXCEPT_IF_NOT_COMPACT noexcept # endif