Skip to content

Commit c433711

Browse files
committed
Remove unused predefined set of headers
1 parent a269496 commit c433711

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

libcxx/utils/libcxx/header_information.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,6 @@ def __hash__(self) -> int:
143143
# Commonly-used sets of headers
144144
all_headers = [Header(p.relative_to(libcxx_include).as_posix()) for p in libcxx_include.rglob("[_a-z]*") if _is_header_file(p)]
145145
all_headers += [Header("__config_site"), Header("__assertion_handler")] # Headers generated during the build process
146-
experimental_headers = [h for h in all_headers if h.is_experimental()]
147146
public_headers = [h for h in all_headers if h.is_public()]
148147
module_headers = [h for h in all_headers if h.has_cxx20_module()]
149148
module_c_headers = [h for h in all_headers if h.has_cxx20_module() and h.is_cstd()]

0 commit comments

Comments
 (0)