Skip to content

Commit cb71036

Browse files
Fix merge and format errors
1 parent 6c4b524 commit cb71036

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

libcxx/test/libcxx/header_inclusions.gen.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@
2222
)
2323

2424
for header in public_headers:
25-
header_guard = lambda h: f"_LIBCPP_{str(h).upper().replace('.', '_').replace('/', '_')}"
25+
header_guard = (
26+
lambda h: f"_LIBCPP_{str(h).upper().replace('.', '_').replace('/', '_')}"
27+
)
2628

2729
# <cassert> has no header guards
2830
if header == "cassert":

libcxx/utils/libcxx/header_information.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def has_cxx20_module(self) -> bool:
9292
experimental headers.
9393
"""
9494
# These headers have been removed in C++20 so are never part of a module.
95-
removed_in_20 = ["ccomplex", "ciso646", "cstdbool", "ctgmath"]
95+
removed_in_20 = ["ccomplex", "ciso646", "cstdalign", "cstdbool", "ctgmath"]
9696
return self.is_public() and not self.is_experimental() and not self.is_C_compatibility() and not self._name in removed_in_20
9797

9898
def is_in_modulemap(self) -> bool:

0 commit comments

Comments
 (0)