diff options
Diffstat (limited to 'cpp/demo/Ice/invoke/Client.cpp')
-rw-r--r-- | cpp/demo/Ice/invoke/Client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/demo/Ice/invoke/Client.cpp b/cpp/demo/Ice/invoke/Client.cpp index db6563a8bce..2fa9ae5d1bd 100644 --- a/cpp/demo/Ice/invoke/Client.cpp +++ b/cpp/demo/Ice/invoke/Client.cpp @@ -263,11 +263,11 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) { in->throwException(); } - catch(const Demo::PrintFailure& ex) + catch(const Demo::PrintFailure&) { // Expected. } - catch(const Ice::UserException& ex) + catch(const Ice::UserException&) { cout << "Unknown user exception" << endl; } |