From 2acfd4d04ad694e6413a5e54bc5991da6ff6a8ac Mon Sep 17 00:00:00 2001 From: Yinghai Lu Date: Fri, 7 Oct 2016 18:38:12 -0700 Subject: [PATCH] Clang-format the flag declarations in Benchmark.cpp 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 | 31 +++++++++++++++++++------------ 1 file changed, 19 insertions(+), 12 deletions(-) diff --git a/folly/Benchmark.cpp b/folly/Benchmark.cpp index 1b32e9ef..370a737a 100644 --- a/folly/Benchmark.cpp +++ b/folly/Benchmark.cpp @@ -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 { -- 2.34.1