Skip to content

Commit 01178c5

Browse files
derekmaurocopybara-github
authored andcommitted
Add a missing dependency on str_format that was being
pulled in transitively PiperOrigin-RevId: 833432792 Change-Id: I7fe3c38a2a151dc97a24f0171a9776cce3d7bad1
1 parent 4efcd35 commit 01178c5

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

absl/profiling/BUILD.bazel

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ cc_library(
161161
"//absl/container:btree",
162162
"//absl/container:flat_hash_map",
163163
"//absl/strings",
164+
"//absl/strings:str_format",
164165
"//absl/types:span",
165166
],
166167
)

absl/profiling/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ absl_cc_library(
109109
absl::flat_hash_map
110110
absl::btree
111111
absl::strings
112+
absl::str_format
112113
absl::span
113114
)
114115

absl/profiling/internal/profile_builder.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
#include "absl/base/internal/raw_logging.h"
3333
#include "absl/strings/escaping.h"
3434
#include "absl/strings/str_cat.h"
35+
#include "absl/strings/str_format.h"
3536
#include "absl/types/span.h"
3637

3738
namespace absl {

0 commit comments

Comments
 (0)