From 58886e4366b9fdd81dd0ed81049fa5c403487082 Mon Sep 17 00:00:00 2001 From: Jarrett Chisholm Date: Sun, 25 Dec 2016 00:55:33 -0500 Subject: fix compile issue with gcc 6 --- entityx/3rdparty/catch.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() ) { -- cgit v1.2.3