diff options
author | Jose <jose@zeroc.com> | 2016-01-08 14:50:38 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-01-08 14:50:38 +0100 |
commit | 6596195fed4cae6dc38bcdb885057ad315f6d8c0 (patch) | |
tree | 5d44e4e18102b475e683f2a43a8fdafc2ddf8d49 /cpp/test/Common/TestCommon.cpp | |
parent | windows build fixes (diff) | |
download | ice-6596195fed4cae6dc38bcdb885057ad315f6d8c0.tar.bz2 ice-6596195fed4cae6dc38bcdb885057ad315f6d8c0.tar.xz ice-6596195fed4cae6dc38bcdb885057ad315f6d8c0.zip |
C++98 test minor build fix
Diffstat (limited to 'cpp/test/Common/TestCommon.cpp')
-rw-r--r-- | cpp/test/Common/TestCommon.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpp/test/Common/TestCommon.cpp b/cpp/test/Common/TestCommon.cpp index 3b26bb03507..edc7b356666 100644 --- a/cpp/test/Common/TestCommon.cpp +++ b/cpp/test/Common/TestCommon.cpp @@ -106,7 +106,11 @@ RemoteConfig::RemoteConfig(const std::string& name, int argc, char** argv, const _server = server; } +#ifdef ICE_CPP11_MAPPING RemoteConfig::~RemoteConfig() noexcept(false) +#else +RemoteConfig::~RemoteConfig() +#endif { if(_server) { |