Skip to content

Commit 73f8aa0

Browse files
[libc][NFC] Fix missing dep in bazel (#73854)
Patch #73469 added a dependency from __support/bit.h to __support/CPP/type_traits.h, but didn't add a dependency in the bazel. This caused downstream build failures. This patch fixes the missing dependency.
1 parent 328fd36 commit 73f8aa0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

utils/bazel/llvm-project-overlay/libc/BUILD.bazel

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -594,6 +594,7 @@ libc_support_library(
594594
name = "__support_bit",
595595
hdrs = ["src/__support/bit.h"],
596596
deps = [
597+
":__support_cpp_type_traits",
597598
":__support_macros_attributes",
598599
],
599600
)

0 commit comments

Comments
 (0)