Removes explicit noexcept(false) from PUGIXML_NOEXCEPT_IF_NOT_COMPACT due to review comment

This commit is contained in:
Brandl, Matthäus (MBR) 2018-03-03 11:22:06 +01:00
parent 581dea4aee
commit fe0088a09a

View File

@ -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