We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a269496 commit c433711Copy full SHA for c433711
libcxx/utils/libcxx/header_information.py
@@ -143,7 +143,6 @@ def __hash__(self) -> int:
143
# Commonly-used sets of headers
144
all_headers = [Header(p.relative_to(libcxx_include).as_posix()) for p in libcxx_include.rglob("[_a-z]*") if _is_header_file(p)]
145
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()]
147
public_headers = [h for h in all_headers if h.is_public()]
148
module_headers = [h for h in all_headers if h.has_cxx20_module()]
149
module_c_headers = [h for h in all_headers if h.has_cxx20_module() and h.is_cstd()]
0 commit comments