diff options
author | Mark Spruiell <mes@zeroc.com> | 2003-12-18 21:37:19 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2003-12-18 21:37:19 +0000 |
commit | 8d060c3b03350ab64824d19609c59bcc9434e52d (patch) | |
tree | 727a643662fde792a71baab15b8f98bf4c157411 /cpp | |
parent | Added PermissionsVerifier to Glacier. (diff) | |
download | ice-8d060c3b03350ab64824d19609c59bcc9434e52d.tar.bz2 ice-8d060c3b03350ab64824d19609c59bcc9434e52d.tar.xz ice-8d060c3b03350ab64824d19609c59bcc9434e52d.zip |
Win32 fix
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/demo/IcePack/hello/Client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/demo/IcePack/hello/Client.cpp b/cpp/demo/IcePack/hello/Client.cpp index 15e1ddaa924..173d113d40f 100644 --- a/cpp/demo/IcePack/hello/Client.cpp +++ b/cpp/demo/IcePack/hello/Client.cpp @@ -123,7 +123,7 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) { hello = HelloPrx::checkedCast(factory->find(name)); } - catch(const NameNotExistException& ex) + catch(const NameNotExistException&) { cout << "This name doesn't exist" << endl; } |