Codemod: use #include angle brackets in folly and thrift
[folly.git] / folly / test / HistogramBenchmark.cpp
index fd736a192f70d523935fed937644b2fc8c35f5d2..27b08258e1d113416acbf083a51d9162bdd6b7c1 100644 (file)
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-#include "folly/stats/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) {