summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2018-02-09 16:01:05 +0100
committerBenoit Foucher <benoit@zeroc.com>2018-02-09 16:01:05 +0100
commiteccb51fdfca5780f73c389a5809d05cd2ae35002 (patch)
tree29c2ab423fb7cdbf0b51190c675abeed84b5f794
parentFixed typo in C# UDP transceiver implementation (diff)
downloadice-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.cpp4
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.