diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2015-02-03 10:04:58 -0330 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2015-02-03 10:04:58 -0330 |
commit | 0c9eca09e0140dbdc6e954d8d1475cf99c52073d (patch) | |
tree | 674c29c884de6cb8a86f3ccabd2d1d69334133d4 /cpp/demo/Ice/minimal/Client.cpp | |
parent | Fixed compiler warning/error (diff) | |
download | ice-0c9eca09e0140dbdc6e954d8d1475cf99c52073d.tar.bz2 ice-0c9eca09e0140dbdc6e954d8d1475cf99c52073d.tar.xz ice-0c9eca09e0140dbdc6e954d8d1475cf99c52073d.zip |
ICE-5814 build linix/osx demos with high warning levels in git
Diffstat (limited to 'cpp/demo/Ice/minimal/Client.cpp')
-rw-r--r-- | cpp/demo/Ice/minimal/Client.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/demo/Ice/minimal/Client.cpp b/cpp/demo/Ice/minimal/Client.cpp index cdc5d07205e..0c1968c30b2 100644 --- a/cpp/demo/Ice/minimal/Client.cpp +++ b/cpp/demo/Ice/minimal/Client.cpp @@ -25,9 +25,9 @@ main(int argc, char* argv[]) hello->sayHello(); communicator->destroy(); } - catch(const Ice::Exception& ex) + catch(const Ice::Exception& ex1) { - cerr << ex << endl; + cerr << ex1 << endl; try { if(communicator) @@ -35,9 +35,9 @@ main(int argc, char* argv[]) communicator->destroy(); } } - catch(const Ice::Exception& ex) + catch(const Ice::Exception& ex2) { - cerr << ex << endl; + cerr << ex2 << endl; } exit(1); } |