diff options
author | Matthew Newhook <matthew@zeroc.com> | 2006-09-12 09:05:46 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2006-09-12 09:05:46 +0000 |
commit | 2d7c098a79cc3701ce7ed00b314f68d2bc2ba41a (patch) | |
tree | aa3ae8612129fc819c1b8144be6dd189dc822b34 /cpp/demo/IceStorm/counter/Server.cpp | |
parent | Fixes (diff) | |
download | ice-2d7c098a79cc3701ce7ed00b314f68d2bc2ba41a.tar.bz2 ice-2d7c098a79cc3701ce7ed00b314f68d2bc2ba41a.tar.xz ice-2d7c098a79cc3701ce7ed00b314f68d2bc2ba41a.zip |
Fixes for windows for IceStormPerSubscriberPublisher
Diffstat (limited to 'cpp/demo/IceStorm/counter/Server.cpp')
-rw-r--r-- | cpp/demo/IceStorm/counter/Server.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/demo/IceStorm/counter/Server.cpp b/cpp/demo/IceStorm/counter/Server.cpp index 687e826bbf1..bd48f0f7a54 100644 --- a/cpp/demo/IceStorm/counter/Server.cpp +++ b/cpp/demo/IceStorm/counter/Server.cpp @@ -56,13 +56,13 @@ Server::run(int argc, char* argv[]) { topic = manager->retrieve("counter"); } - catch(const IceStorm::NoSuchTopic& ex) + catch(const IceStorm::NoSuchTopic&) { try { topic = manager->create("counter"); } - catch(const IceStorm::TopicExists& ex) + catch(const IceStorm::TopicExists&) { cerr << appName() << ": topic exists, please try again." << endl; return EXIT_FAILURE; |