Switch gflags to portability/GFlags.h
[folly.git] / folly / test / SparseByteSetBench.cpp
index 0f3da472501ee3d04133907e8a2cfa08838db198..83c6edd80e61100abd81578b7ab15e63425270a9 100644 (file)
  *  A benchmark comparing SparseByteSet to bitset<256> and bool[256].
  */
 
-#include <bitset>
-#include <random>
-#include <vector>
-#include <gflags/gflags.h>
 #include <folly/Benchmark.h>
 #include <folly/Format.h>
 #include <folly/SparseByteSet.h>
+#include <folly/portability/GFlags.h>
+#include <bitset>
+#include <random>
+#include <vector>
 
 using namespace std;
 using namespace folly;