diff options
author | Alec Thomas <alec@swapoff.org> | 2016-12-29 08:39:24 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-29 08:39:24 +1100 |
commit | ab9222068f6e9519290d4edd1923e3cc60ec8989 (patch) | |
tree | 37da1ec7269029de8ccc0d1ef24b14d15c9632b2 | |
parent | 08479b0d3e648daefbcbd3814a421d9be623ac20 (diff) | |
parent | 58886e4366b9fdd81dd0ed81049fa5c403487082 (diff) |
Merge pull request #167 from jarrettchisholm/master
Fix for issue #145
-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() ) { |