diff options
author | Benoit Foucher <benoit@zeroc.com> | 2018-02-09 16:01:05 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2018-02-09 16:01:05 +0100 |
commit | eccb51fdfca5780f73c389a5809d05cd2ae35002 (patch) | |
tree | 29c2ab423fb7cdbf0b51190c675abeed84b5f794 | |
parent | Fixed typo in C# UDP transceiver implementation (diff) | |
download | ice-eccb51fdfca5780f73c389a5809d05cd2ae35002.tar.bz2 ice-eccb51fdfca5780f73c389a5809d05cd2ae35002.tar.xz ice-eccb51fdfca5780f73c389a5809d05cd2ae35002.zip |
Fixed C++ Windows build error in IceGrid/replicaGroup test
-rw-r--r-- | cpp/test/IceGrid/replicaGroup/AllTests.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/IceGrid/replicaGroup/AllTests.cpp b/cpp/test/IceGrid/replicaGroup/AllTests.cpp index 5ef14b3adb5..3839f124213 100644 --- a/cpp/test/IceGrid/replicaGroup/AllTests.cpp +++ b/cpp/test/IceGrid/replicaGroup/AllTests.cpp @@ -1089,7 +1089,7 @@ allTests(const Ice::CommunicatorPtr& comm) admin->startServer("Server2"); test(false); } - catch(const ServerStartException& ex) + catch(const ServerStartException&) { // Server should fail to start because it can't regsiter dynamically an OA // with a deployed replica group. @@ -1122,7 +1122,7 @@ allTests(const Ice::CommunicatorPtr& comm) admin->addApplication(app.descriptor); test(false); } - catch(const DeploymentException& ex) + catch(const DeploymentException&) { // Expected, can't register a replica group if it has been registered // with dynamic registration. |