diff options
author | Jarrett Chisholm <j.chisholm@prylynx.com> | 2016-12-25 00:55:33 -0500 |
---|---|---|
committer | Jarrett Chisholm <j.chisholm@prylynx.com> | 2016-12-25 00:55:33 -0500 |
commit | 58886e4366b9fdd81dd0ed81049fa5c403487082 (patch) | |
tree | 93ccc0b925f868a2b41552210caa5855eeb49bd2 | |
parent | 4fe45348467145dbf0c6403dde4b730de5e575e1 (diff) |
fix compile issue with gcc 6
-rw-r--r-- | entityx/3rdparty/catch.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
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() ) { |