D2741855 broke my wangle. Reverting
[folly.git] / folly / test / FBVectorBenchmark.cpp
index e7976697d79e1e2fcf378ff17ac87a47681daa05..6548c3f40f0c4f18594bd09fb02e706fe5105237 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Facebook, Inc.
+ * Copyright 2015 Facebook, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
 //
 // Author: andrei.alexandrescu@fb.com
 
-#include "folly/Traits.h"
-#include "folly/Random.h"
-#include "folly/FBString.h"
-#include "folly/FBVector.h"
-#include "folly/Benchmark.h"
+#include <folly/Traits.h>
+#include <folly/Random.h>
+#include <folly/FBString.h>
+#include <folly/FBVector.h>
+#include <folly/Benchmark.h>
 
 #include <gflags/gflags.h>
 
@@ -93,20 +93,20 @@ typedef vector<folly::fbstring> FBStringVector;
 typedef fbvector<folly::fbstring> FBStringFBVector;
 
 #define VECTOR IntVector
-#include "folly/test/FBVectorTestBenchmarks.cpp.h"
+#include <folly/test/FBVectorTestBenchmarks.cpp.h> // nolint
 #undef VECTOR
 #define VECTOR IntFBVector
-#include "folly/test/FBVectorTestBenchmarks.cpp.h"
+#include <folly/test/FBVectorTestBenchmarks.cpp.h> // nolint
 #undef VECTOR
 #define VECTOR FBStringVector
-#include "folly/test/FBVectorTestBenchmarks.cpp.h"
+#include <folly/test/FBVectorTestBenchmarks.cpp.h> // nolint
 #undef VECTOR
 #define VECTOR FBStringFBVector
-#include "folly/test/FBVectorTestBenchmarks.cpp.h"
+#include <folly/test/FBVectorTestBenchmarks.cpp.h> // nolint
 #undef VECTOR
 
 int main(int argc, char** argv) {
-  google::ParseCommandLineFlags(&argc, &argv, true);
+  gflags::ParseCommandLineFlags(&argc, &argv, true);
   folly::runBenchmarks();
   return 0;
 }