make style applied
diff --git a/lib/cpp/src/thrift/concurrency/ThreadManager.cpp b/lib/cpp/src/thrift/concurrency/ThreadManager.cpp
index cc2c3c6..255d237 100644
--- a/lib/cpp/src/thrift/concurrency/ThreadManager.cpp
+++ b/lib/cpp/src/thrift/concurrency/ThreadManager.cpp
@@ -290,9 +290,9 @@
if (task->state_ == ThreadManager::Task::EXECUTING) {
try {
task->run();
- } catch(const std::exception& e) {
+ } catch (const std::exception& e) {
GlobalOutput.printf("[ERROR] task->run() raised an exception: %s", e.what());
- } catch(...) {
+ } catch (...) {
GlobalOutput.printf("[ERROR] task->run() raised an unknown exception");
}
}