`clang-format -i -style=file *.cc *.h`

Change-Id: I62a87c5d8309b21265e904c0aeb9b3e094c9024a
diff --git a/stats.h b/stats.h
index 63acc55..e77503a 100644
--- a/stats.h
+++ b/stats.h
@@ -50,12 +50,12 @@
 
 void ReportAllStats();
 
-#define COLLECT_STATS(name)                     \
-  static Stats stats(name);                     \
+#define COLLECT_STATS(name) \
+  static Stats stats(name); \
   ScopedStatsRecorder ssr(&stats)
 
-#define COLLECT_STATS_WITH_SLOW_REPORT(name, msg)       \
-  static Stats stats(name);                             \
+#define COLLECT_STATS_WITH_SLOW_REPORT(name, msg) \
+  static Stats stats(name);                       \
   ScopedStatsRecorder ssr(&stats, msg)
 
 #endif  // STATS_H_