diff options
author | Joe George <joe@zeroc.com> | 2016-06-09 14:50:25 -0400 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2016-06-10 16:18:16 -0400 |
commit | 099dc25550da1e1612a6508c3e18954dbc01e6cd (patch) | |
tree | 348c81e88e50a4a84eee94672022c89ac935c5a2 /cpp/test/include | |
parent | Restored serveramd on Linux/OSX (diff) | |
download | ice-099dc25550da1e1612a6508c3e18954dbc01e6cd.tar.bz2 ice-099dc25550da1e1612a6508c3e18954dbc01e6cd.tar.xz ice-099dc25550da1e1612a6508c3e18954dbc01e6cd.zip |
ICE-7176 - Cleanup exception dtor noexcept
Diffstat (limited to 'cpp/test/include')
-rw-r--r-- | cpp/test/include/TestCommon.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/test/include/TestCommon.h b/cpp/test/include/TestCommon.h index eb622197fa8..7ec0469f25b 100644 --- a/cpp/test/include/TestCommon.h +++ b/cpp/test/include/TestCommon.h @@ -150,9 +150,11 @@ public: { } - virtual ~TestFailedException() ICE_NOEXCEPT +#ifndef ICE_CPP11_COMPILER + virtual ~TestFailedException() throw() { } +#endif virtual ::std::string ice_id() const { |