diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-07-29 14:15:09 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-07-29 14:15:09 +0000 |
commit | 1bd83fe43e2c31bd44f95d18725d613bee7ec911 (patch) | |
tree | 8c030f3611b3e71484c6b663440da271b3b65d35 /cpp | |
parent | Fix (diff) | |
download | ice-1bd83fe43e2c31bd44f95d18725d613bee7ec911.tar.bz2 ice-1bd83fe43e2c31bd44f95d18725d613bee7ec911.tar.xz ice-1bd83fe43e2c31bd44f95d18725d613bee7ec911.zip |
Fixed compile error on windows
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/Ice/Application.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/Application.cpp b/cpp/src/Ice/Application.cpp index 40c57512dcd..6ae513b85bd 100644 --- a/cpp/src/Ice/Application.cpp +++ b/cpp/src/Ice/Application.cpp @@ -346,7 +346,7 @@ Ice::Application::main(int argc, char* argv[], const char* configFile) // _ctrlCHandler = 0; } - catch(const CtrlCHandlerException& e) + catch(const CtrlCHandlerException&) { cerr << argv[0] << ": only one instance of the Application class can be used" << endl; status = EXIT_FAILURE; |