[llvm-branch-commits] [libcxx] [libcxx] Workaround for build error after #108999 (PR #110783)
Vitaly Buka via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Tue Oct 1 20:51:15 PDT 2024
https://github.com/vitalybuka updated https://github.com/llvm/llvm-project/pull/110783
>From 61a918f5dda11abe31f76a0ecc79b15f456f9924 Mon Sep 17 00:00:00 2001
From: Vitaly Buka <vitalybuka at google.com>
Date: Tue, 1 Oct 2024 20:51:01 -0700
Subject: [PATCH] format
Created using spr 1.3.4
---
libcxx/utils/generate_iwyu_mapping.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libcxx/utils/generate_iwyu_mapping.py b/libcxx/utils/generate_iwyu_mapping.py
index dadf6b58bd98a8..6946cd2a612f49 100644
--- a/libcxx/utils/generate_iwyu_mapping.py
+++ b/libcxx/utils/generate_iwyu_mapping.py
@@ -15,7 +15,7 @@ def IWYU_mapping(header: str) -> typing.Optional[typing.List[str]]:
"__pstl/.+",
"__support/.+",
"__utility/private_constructor_tag.h",
- "__cxx03/.+", # FIXME: Workaround for https://github.com/llvm/llvm-project/pull/108999
+ "__cxx03/.+", # FIXME: Workaround for https://github.com/llvm/llvm-project/pull/108999
]
if any(re.match(pattern, header) for pattern in ignore):
return None
More information about the llvm-branch-commits
mailing list