diff options
author | Benoit Foucher <benoit@zeroc.com> | 2014-07-25 17:47:36 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2014-07-25 17:47:36 +0200 |
commit | e548dd63ec00b52e8d0f280b7a823516b8f61470 (patch) | |
tree | d3960c6fb761b135a4a6ad6cb991c1fa6f4d67f5 /cpp/src/IceGrid/LocatorI.cpp | |
parent | Improved IceGrid discovery, it now works with icegrid registry slaves and nodes (diff) | |
download | ice-e548dd63ec00b52e8d0f280b7a823516b8f61470.tar.bz2 ice-e548dd63ec00b52e8d0f280b7a823516b8f61470.tar.xz ice-e548dd63ec00b52e8d0f280b7a823516b8f61470.zip |
Fixed ICE-5595: Catch C++ exceptions by const reference
Diffstat (limited to 'cpp/src/IceGrid/LocatorI.cpp')
-rw-r--r-- | cpp/src/IceGrid/LocatorI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/LocatorI.cpp b/cpp/src/IceGrid/LocatorI.cpp index e7d34802386..0a0add3df0d 100644 --- a/cpp/src/IceGrid/LocatorI.cpp +++ b/cpp/src/IceGrid/LocatorI.cpp @@ -113,7 +113,7 @@ public: { ex.ice_throw(); } - catch(Ice::AdapterNotFoundException&) + catch(const Ice::AdapterNotFoundException&) { // // We couldn't find the adapter, we ignore and return the |