Skip to content

Commit 0ac78d7

Browse files
committed
fmt
1 parent e0c4b64 commit 0ac78d7

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

libcxx/utils/libcxx/header_information.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -202,16 +202,17 @@ def is_modulemap_header(header):
202202
for p in include.glob("experimental/[a-z]*")
203203
if is_header(p)
204204
)
205-
public_headers = list(filter(lambda x: not x.startswith("__"), toplevel_headers + experimental_headers))
205+
public_headers = list(
206+
filter(lambda x: not x.startswith("__"), toplevel_headers + experimental_headers)
207+
)
206208

207209
# The headers used in the std and std.compat modules.
208210
#
209211
# This is the set of all C++23-and-later headers, excluding C compatibility headers.
210212
module_headers = [
211213
header
212214
for header in toplevel_headers
213-
if not header.endswith(".h")
214-
and not header.startswith("__")
215+
if not header.endswith(".h") and not header.startswith("__")
215216
# These headers have been removed in C++20 so are never part of a module.
216217
and not header in ["ccomplex", "ciso646", "cstdbool", "ctgmath"]
217218
]

0 commit comments

Comments
 (0)