summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2020-03-02 10:50:03 +0100
committerBenoit Foucher <benoit@zeroc.com>2020-03-02 10:50:03 +0100
commitb26066b3390aa3140e60970adfd2c461f3be3ec1 (patch)
tree6fe1ccddb2aa2bec817aa443d2d465c288ef463d /cpp
parentDon't retry invocations on fixed proxies, fixes #671 (diff)
downloadice-b26066b3390aa3140e60970adfd2c461f3be3ec1.tar.bz2
ice-b26066b3390aa3140e60970adfd2c461f3be3ec1.tar.xz
ice-b26066b3390aa3140e60970adfd2c461f3be3ec1.zip
Fixed Windows build error caused by unreferenced local variable
Diffstat (limited to 'cpp')
-rw-r--r--cpp/test/Ice/retry/AllTests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/Ice/retry/AllTests.cpp b/cpp/test/Ice/retry/AllTests.cpp
index b8d3d471822..4aeef33bf9c 100644
--- a/cpp/test/Ice/retry/AllTests.cpp
+++ b/cpp/test/Ice/retry/AllTests.cpp
@@ -247,7 +247,7 @@ allTests(const Ice::CommunicatorPtr& communicator, const Ice::CommunicatorPtr& c
{
retry1->ice_fixed(retry1->ice_getCachedConnection())->opIdempotent(4);
}
- catch(const Ice::Exception& ex)
+ catch(const Ice::Exception&)
{
}
testInvocationCount(1);