Reformat headers in ADT and Support partially.
[oota-llvm.git] / include / llvm / Support / Timer.h
index b4bf9543b0ae8413c815eb95a53a0662ae5eb2cf..2d9b0e24841ce1d2c878447b7f0575e39e3c7599 100644 (file)
@@ -37,7 +37,7 @@ public:
   /// significant and shouldn't be counted as part of a duration.
   static TimeRecord getCurrentTime(bool Start = true);
 
-  double getProcessTime() const { return UserTime+SystemTime; }
+  double getProcessTime() const { return UserTime + SystemTime; }
   double getUserTime() const { return UserTime; }
   double getSystemTime() const { return SystemTime; }
   double getWallTime() const { return WallTime; }
@@ -157,7 +157,7 @@ struct NamedRegionTimer : public TimeRegion {
 class TimerGroup {
   std::string Name;
   Timer *FirstTimer;   // First timer in the group.
-  std::vector<std::pair<TimeRecord, std::string> > TimersToPrint;
+  std::vector<std::pair<TimeRecord, std::string>> TimersToPrint;
 
   TimerGroup **Prev, *Next; // Doubly linked list of TimerGroup's.
   TimerGroup(const TimerGroup &TG) = delete;