summaryrefslogtreecommitdiff
path: root/cpp/test/IceUtil/thread/AliveTest.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2014-07-25 17:47:36 +0200
committerBenoit Foucher <benoit@zeroc.com>2014-07-25 17:47:36 +0200
commite548dd63ec00b52e8d0f280b7a823516b8f61470 (patch)
treed3960c6fb761b135a4a6ad6cb991c1fa6f4d67f5 /cpp/test/IceUtil/thread/AliveTest.cpp
parentImproved IceGrid discovery, it now works with icegrid registry slaves and nodes (diff)
downloadice-e548dd63ec00b52e8d0f280b7a823516b8f61470.tar.bz2
ice-e548dd63ec00b52e8d0f280b7a823516b8f61470.tar.xz
ice-e548dd63ec00b52e8d0f280b7a823516b8f61470.zip
Fixed ICE-5595: Catch C++ exceptions by const reference
Diffstat (limited to 'cpp/test/IceUtil/thread/AliveTest.cpp')
-rw-r--r--cpp/test/IceUtil/thread/AliveTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/IceUtil/thread/AliveTest.cpp b/cpp/test/IceUtil/thread/AliveTest.cpp
index 0f303e19e2b..dbe0050da96 100644
--- a/cpp/test/IceUtil/thread/AliveTest.cpp
+++ b/cpp/test/IceUtil/thread/AliveTest.cpp
@@ -62,7 +62,7 @@ public:
_childCreated.signal();
_parentReady.waitForSignal();
}
- catch(IceUtil::ThreadLockedException &)
+ catch(const IceUtil::ThreadLockedException&)
{
}
}