mcslee: being nitpicky ensuring consistent coding style

Summary: no tabs, conditionals with spaces around them, etc

Reviewed By: thrift style rules


git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665122 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/lib/cpp/src/concurrency/TimerManager.cpp b/lib/cpp/src/concurrency/TimerManager.cpp
index 8d6dd5e..07f05ad 100644
--- a/lib/cpp/src/concurrency/TimerManager.cpp
+++ b/lib/cpp/src/concurrency/TimerManager.cpp
@@ -98,8 +98,8 @@
 	  }
           assert((timeout != 0 && manager_->taskCount_ > 0) || (timeout == 0 && manager_->taskCount_ == 0));
           try {
-              manager_->monitor_.wait(timeout);
-          } catch(TimedOutException& e) {}
+            manager_->monitor_.wait(timeout);
+          } catch (TimedOutException &e) {}
 	  now = Util::currentTime();
 	}