summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/plugin/Plugin.cpp
diff options
context:
space:
mode:
authorJoe George <joe@zeroc.com>2016-06-09 14:50:25 -0400
committerJoe George <joe@zeroc.com>2016-06-10 16:18:16 -0400
commit099dc25550da1e1612a6508c3e18954dbc01e6cd (patch)
tree348c81e88e50a4a84eee94672022c89ac935c5a2 /cpp/test/Ice/plugin/Plugin.cpp
parentRestored serveramd on Linux/OSX (diff)
downloadice-099dc25550da1e1612a6508c3e18954dbc01e6cd.tar.bz2
ice-099dc25550da1e1612a6508c3e18954dbc01e6cd.tar.xz
ice-099dc25550da1e1612a6508c3e18954dbc01e6cd.zip
ICE-7176 - Cleanup exception dtor noexcept
Diffstat (limited to 'cpp/test/Ice/plugin/Plugin.cpp')
-rw-r--r--cpp/test/Ice/plugin/Plugin.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/test/Ice/plugin/Plugin.cpp b/cpp/test/Ice/plugin/Plugin.cpp
index 2c1624ffe06..3c4d34a4bc8 100644
--- a/cpp/test/Ice/plugin/Plugin.cpp
+++ b/cpp/test/Ice/plugin/Plugin.cpp
@@ -59,7 +59,9 @@ class PluginInitializeFailExeption : public std::exception
public:
PluginInitializeFailExeption() ICE_NOEXCEPT {}
- virtual ~PluginInitializeFailExeption() ICE_NOEXCEPT {}
+#ifndef ICE_CPP11_COMPILER
+ virtual ~PluginInitializeFailExeption() throw() {}
+#endif
virtual const char* what() const ICE_NOEXCEPT { return "PluginInitializeFailExeption"; }
};