From: Jarrett Chisholm Date: Sun, 25 Dec 2016 05:55:33 +0000 (-0500) Subject: fix compile issue with gcc 6 X-Git-Url: https://code.bitgloo.com/?a=commitdiff_plain;h=58886e4366b9fdd81dd0ed81049fa5c403487082;p=clyne%2Fentityx.git fix compile issue with gcc 6 --- diff --git a/entityx/3rdparty/catch.hpp b/entityx/3rdparty/catch.hpp index 108bbdb..e329620 100644 --- a/entityx/3rdparty/catch.hpp +++ b/entityx/3rdparty/catch.hpp @@ -3504,7 +3504,7 @@ namespace Clara { } // !TBD: Need to include workarounds to be able to declare this // destructor as able to throw exceptions - ~ArgBinder() /* noexcept(false) */ { + ~ArgBinder() noexcept(false) { if( m_cl && !std::uncaught_exception() ) { m_arg.validate(); if( m_arg.isFixedPositional() ) {