[libcxx-commits] [libcxx] c4fe456 - [libc++] Fixes building with Python 3.8.
Mark de Wever via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Feb 11 11:08:20 PST 2025
Author: Mark de Wever
Date: 2025-02-11T20:08:12+01:00
New Revision: c4fe4561c7893596a5e519d7275df5ea5f0886be
URL: https://github.com/llvm/llvm-project/commit/c4fe4561c7893596a5e519d7275df5ea5f0886be
DIFF: https://github.com/llvm/llvm-project/commit/c4fe4561c7893596a5e519d7275df5ea5f0886be.diff
LOG: [libc++] Fixes building with Python 3.8.
This addresses the post-commit issues reported in #101880.
Added:
Modified:
libcxx/utils/generate_feature_test_macro_components.py
Removed:
################################################################################
diff --git a/libcxx/utils/generate_feature_test_macro_components.py b/libcxx/utils/generate_feature_test_macro_components.py
index e9e531733abb5..d0f9d279cd0ea 100755
--- a/libcxx/utils/generate_feature_test_macro_components.py
+++ b/libcxx/utils/generate_feature_test_macro_components.py
@@ -1957,7 +1957,7 @@ def produce_docs():
@dataclass
class Metadata:
- headers: list[str] = None
+ headers: List[str] = None
test_suite_guard: str = None
libcxx_guard: str = None
More information about the libcxx-commits
mailing list