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/src/IceXML/Parser.h | |
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/src/IceXML/Parser.h')
-rw-r--r-- | cpp/src/IceXML/Parser.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/src/IceXML/Parser.h b/cpp/src/IceXML/Parser.h index 366ca674d89..b44b3cac897 100644 --- a/cpp/src/IceXML/Parser.h +++ b/cpp/src/IceXML/Parser.h @@ -48,7 +48,9 @@ public: ParserException(const std::string&); ParserException(const char*, int, const std::string&); - virtual ~ParserException() ICE_NOEXCEPT; +#ifndef ICE_CPP11_COMPILER + virtual ~ParserException() throw(); +#endif virtual std::string ice_id() const; virtual void ice_print(std::ostream&) const; |