From 5d7bf82255a91c6e3d7389df322c8e4d8141fea3 Mon Sep 17 00:00:00 2001 From: David Callahan Date: Tue, 5 Jan 2016 20:27:15 -0800 Subject: [PATCH] parse args for -json flag Reviewed By: yfeldblum Differential Revision: D2803911 fb-gh-sync-id: 65023cae7fd8e06c30fed100826b4b834ee2e9b1 --- folly/test/FingerprintBenchmark.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/folly/test/FingerprintBenchmark.cpp b/folly/test/FingerprintBenchmark.cpp index ab93722a..301706df 100644 --- a/folly/test/FingerprintBenchmark.cpp +++ b/folly/test/FingerprintBenchmark.cpp @@ -124,6 +124,7 @@ void fastFingerprintTerms128(int num_iterations, int num_ids) { // the benchmark without providing any useful data. int main(int argc, char** argv) { + gflags::ParseCommandLineFlags(&argc, &argv, true); # define BM(name, min, max) \ for (size_t i = min; i <= max; i *= 2) { \ addBenchmark( \ -- 2.34.1