File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -202,16 +202,17 @@ def is_modulemap_header(header):
202
202
for p in include .glob ("experimental/[a-z]*" )
203
203
if is_header (p )
204
204
)
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
+ )
206
208
207
209
# The headers used in the std and std.compat modules.
208
210
#
209
211
# This is the set of all C++23-and-later headers, excluding C compatibility headers.
210
212
module_headers = [
211
213
header
212
214
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 ("__" )
215
216
# These headers have been removed in C++20 so are never part of a module.
216
217
and not header in ["ccomplex" , "ciso646" , "cstdbool" , "ctgmath" ]
217
218
]
You can’t perform that action at this time.
0 commit comments