diff options
author | Benoit Foucher <benoit@zeroc.com> | 2020-03-02 10:50:03 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2020-03-02 10:50:03 +0100 |
commit | b26066b3390aa3140e60970adfd2c461f3be3ec1 (patch) | |
tree | 6fe1ccddb2aa2bec817aa443d2d465c288ef463d /cpp | |
parent | Don't retry invocations on fixed proxies, fixes #671 (diff) | |
download | ice-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.cpp | 2 |
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); |