Skip to content

Commit 842ce4e

Browse files
committed
[bazel] Remove useless exclusion from glob (NFC)
The excluded file doesn't match the glob pattern to begin with, so it's unnecessary.
1 parent d951bec commit 842ce4e

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

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

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1954,12 +1954,7 @@ cc_library(
19541954
],
19551955
exclude = ["lib/Interpreter/Wasm.cpp"],
19561956
),
1957-
hdrs = glob(
1958-
[
1959-
"include/clang/Interpreter/*.h",
1960-
],
1961-
exclude = ["lib/Interpreter/Wasm.cpp"],
1962-
),
1957+
hdrs = glob(["include/clang/Interpreter/*.h"]),
19631958
includes = ["include"],
19641959
deps = [
19651960
":analysis",

0 commit comments

Comments
 (0)