From 10e7b4b72d58bc1476a1dcc94a779b4804974256 Mon Sep 17 00:00:00 2001 From: Gennadiy Rozental Date: Thu, 6 Oct 2022 08:51:31 -0700 Subject: [PATCH] Eliminate use of internal interfaces PiperOrigin-RevId: 479325483 Change-Id: I9c4384173ce996818e0cf749c0fc465d6e9aaf8c --- absl/container/BUILD.bazel | 2 +- absl/container/btree_benchmark.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/absl/container/BUILD.bazel b/absl/container/BUILD.bazel index 15162f28..6b4cedd2 100644 --- a/absl/container/BUILD.bazel +++ b/absl/container/BUILD.bazel @@ -1011,8 +1011,8 @@ cc_binary( ":flat_hash_set", ":hashtable_debug", "//absl/base:raw_logging_internal", - "//absl/flags:flag", "//absl/hash", + "//absl/log", "//absl/memory", "//absl/strings:cord", "//absl/strings:str_format", diff --git a/absl/container/btree_benchmark.cc b/absl/container/btree_benchmark.cc index 0ca497c8..cc9a106d 100644 --- a/absl/container/btree_benchmark.cc +++ b/absl/container/btree_benchmark.cc @@ -34,8 +34,8 @@ #include "absl/container/flat_hash_map.h" #include "absl/container/flat_hash_set.h" #include "absl/container/internal/hashtable_debug.h" -#include "absl/flags/flag.h" #include "absl/hash/hash.h" +#include "absl/log/log.h" #include "absl/memory/memory.h" #include "absl/strings/cord.h" #include "absl/strings/str_format.h"