Clang-format the flag declarations in Benchmark.cpp
authorYinghai Lu <yinghai@fb.com>
Sat, 8 Oct 2016 01:38:12 +0000 (18:38 -0700)
committerFacebook Github Bot <facebook-github-bot-bot@fb.com>
Sat, 8 Oct 2016 01:53:35 +0000 (18:53 -0700)
Summary: This patch prepares the later diff which will add a new flag. Just make things nice.

Reviewed By: igorsugak

Differential Revision: D3990600

fbshipit-source-id: d4f53a5b44708ca025e4f6615d161b24de685931

folly/Benchmark.cpp

index 1b32e9ef3c479f7b81b6a20f923c801ddd589be5..370a737a873b9f07ec9be9e7ce9e1cf082d8f0c4 100644 (file)
@@ -35,18 +35,25 @@ using namespace std;
 DEFINE_bool(benchmark, false, "Run benchmarks.");
 DEFINE_bool(json, false, "Output in JSON format.");
 
-DEFINE_string(bm_regex, "",
-              "Only benchmarks whose names match this regex will be run.");
-
-DEFINE_int64(bm_min_usec, 100,
-             "Minimum # of microseconds we'll accept for each benchmark.");
-
-DEFINE_int64(bm_min_iters, 1,
-             "Minimum # of iterations we'll try for each benchmark.");
-
-DEFINE_int32(bm_max_secs, 1,
-             "Maximum # of seconds we'll spend on each benchmark.");
-
+DEFINE_string(
+    bm_regex,
+    "",
+    "Only benchmarks whose names match this regex will be run.");
+
+DEFINE_int64(
+    bm_min_usec,
+    100,
+    "Minimum # of microseconds we'll accept for each benchmark.");
+
+DEFINE_int64(
+    bm_min_iters,
+    1,
+    "Minimum # of iterations we'll try for each benchmark.");
+
+DEFINE_int32(
+    bm_max_secs,
+    1,
+    "Maximum # of seconds we'll spend on each benchmark.");
 
 namespace folly {