summaryrefslogtreecommitdiff
path: root/cpp/test/IceUtil/thread/StartTest.cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2003-05-08 05:46:29 +0000
committerMichi Henning <michi@zeroc.com>2003-05-08 05:46:29 +0000
commit225855fb6b992a4207f9107d988036aa1ee0d217 (patch)
treeefa68b5ed0afbc0753e7b8d98786674262caa872 /cpp/test/IceUtil/thread/StartTest.cpp
parentmore install projects (diff)
downloadice-225855fb6b992a4207f9107d988036aa1ee0d217.tar.bz2
ice-225855fb6b992a4207f9107d988036aa1ee0d217.tar.xz
ice-225855fb6b992a4207f9107d988036aa1ee0d217.zip
Merged HEAD and slicing trees.
Diffstat (limited to 'cpp/test/IceUtil/thread/StartTest.cpp')
-rw-r--r--cpp/test/IceUtil/thread/StartTest.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/test/IceUtil/thread/StartTest.cpp b/cpp/test/IceUtil/thread/StartTest.cpp
index 2271a0588b4..c722df22672 100644
--- a/cpp/test/IceUtil/thread/StartTest.cpp
+++ b/cpp/test/IceUtil/thread/StartTest.cpp
@@ -54,7 +54,8 @@ StartTest::run()
ThreadControl control = t->start();
control.join();
bool gotException = false;
- try {
+ try
+ {
t->start();
}
catch(const ThreadStartedException&)