diff options
Diffstat (limited to 'absl/hash')
-rw-r--r-- | absl/hash/BUILD.bazel | 1 | ||||
-rw-r--r-- | absl/hash/hash_benchmark.cc | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/absl/hash/BUILD.bazel b/absl/hash/BUILD.bazel index acd490ba..90c6c8a8 100644 --- a/absl/hash/BUILD.bazel +++ b/absl/hash/BUILD.bazel @@ -94,6 +94,7 @@ cc_binary( ":hash", "//absl/base:core_headers", "//absl/random", + "//absl/strings", "//absl/strings:cord", "//absl/strings:cord_test_helpers", "@com_github_google_benchmark//:benchmark_main", diff --git a/absl/hash/hash_benchmark.cc b/absl/hash/hash_benchmark.cc index 27e52719..d498ac29 100644 --- a/absl/hash/hash_benchmark.cc +++ b/absl/hash/hash_benchmark.cc @@ -12,13 +12,18 @@ // See the License for the specific language governing permissions and // limitations under the License. +#include <string> +#include <type_traits> #include <typeindex> +#include <utility> +#include <vector> #include "absl/base/attributes.h" #include "absl/hash/hash.h" #include "absl/random/random.h" #include "absl/strings/cord.h" #include "absl/strings/cord_test_helpers.h" +#include "absl/strings/string_view.h" #include "benchmark/benchmark.h" namespace { |