Don't shadow locals, parameters or fields
[folly.git] / folly / test / FingerprintBenchmark.cpp
index ab93722a7c33d23c7b0db66174813da026202035..a38b8e31b81b318b30c27e968c5a379b0b8de2dc 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015 Facebook, Inc.
+ * Copyright 2016 Facebook, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -43,7 +43,7 @@ void initialize() {
   // word length = uniformly distributed between 1 and 10
   // charset = 0x20 - 0x7f
   std::uniform_int_distribution<size_t> term_len(1, 10);
-  std::uniform_int_distribution<uint8_t> term_char(0x20, 0x7f);
+  std::uniform_int_distribution<uint16_t> term_char(0x20, 0x7f);
   for (int i = 0; i < kMaxTerms; i++) {
     std::string& term = terms[i];
     int len = term_len(rng);
@@ -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( \