Codemod: use #include angle brackets in folly and thrift
[folly.git] / folly / test / HistogramBenchmark.cpp
index e463f8d1073cfb19d63591bf8bf14a3028c01f11..27b08258e1d113416acbf083a51d9162bdd6b7c1 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2012 Facebook, Inc.
+ * Copyright 2014 Facebook, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-#include "folly/Histogram.h"
+#include <folly/stats/Histogram.h>
 
 #include <gflags/gflags.h>
 
-#include "folly/Benchmark.h"
-#include "folly/Foreach.h"
+#include <folly/Benchmark.h>
+#include <folly/Foreach.h>
 
 using folly::Histogram;
 
-void addValue(uint n, int64_t bucketSize, int64_t min, int64_t max) {
+void addValue(unsigned int n, int64_t bucketSize, int64_t min, int64_t max) {
   Histogram<int64_t> hist(bucketSize, min, max);
   int64_t num = min;
   FOR_EACH_RANGE (i, 0, n) {