diff options
author | Benoit Foucher <benoit@zeroc.com> | 2002-12-05 22:14:01 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2002-12-05 22:14:01 +0000 |
commit | d88704aa62dd386130f36a6378d20ee700b8b8c3 (patch) | |
tree | 32b94bf995eccf745f0f54338d854e950543012a /cpp/test/Ice/exceptions/AllTests.cpp | |
parent | remove dynamic factories before static factory test (diff) | |
download | ice-d88704aa62dd386130f36a6378d20ee700b8b8c3.tar.bz2 ice-d88704aa62dd386130f36a6378d20ee700b8b8c3.tar.xz ice-d88704aa62dd386130f36a6378d20ee700b8b8c3.zip |
Visual C++ Warning Fix.
Diffstat (limited to 'cpp/test/Ice/exceptions/AllTests.cpp')
-rw-r--r-- | cpp/test/Ice/exceptions/AllTests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/Ice/exceptions/AllTests.cpp b/cpp/test/Ice/exceptions/AllTests.cpp index c946bd25f11..5dec31a5682 100644 --- a/cpp/test/Ice/exceptions/AllTests.cpp +++ b/cpp/test/Ice/exceptions/AllTests.cpp @@ -751,7 +751,7 @@ allTests(const Ice::CommunicatorPtr& communicator, bool collocated) try { communicator->removeObjectFactory("x"); } - catch(const Ice::NotRegisteredException&e) + catch(const Ice::NotRegisteredException&) { gotException = true; } |