summaryrefslogtreecommitdiff
path: root/cpp/test/IceUtil/thread/StartTest.cpp
diff options
context:
space:
mode:
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&)