diff options
author | Mark de Wever <koraq@xs4all.nl> | 2022-12-20 18:02:36 +0100 |
---|---|---|
committer | Mark de Wever <koraq@xs4all.nl> | 2022-12-21 17:30:16 +0100 |
commit | 2b6ce25a2a569fe7a61d2eee630620055d47d3bd (patch) | |
tree | afabf41a693e766cd239d59501853e95a8d9c4f7 /libcxx/utils/generate_feature_test_macro_components.py | |
parent | 44ea075d9ce3d3d9e5728795eb73fe6d1a5250e8 (diff) | |
download | llvm-2b6ce25a2a569fe7a61d2eee630620055d47d3bd.tar.gz |
[libc++] Adds __cpp_lib_constexpr_algorithms to utility.
Implements:
- LWG3792 __cpp_lib_constexpr_algorithms should also be defined in <utility>
Depends on D140407
Reviewed By: #libc, philnik, ldionne
Differential Revision: https://reviews.llvm.org/D140413
Diffstat (limited to 'libcxx/utils/generate_feature_test_macro_components.py')
-rwxr-xr-x | libcxx/utils/generate_feature_test_macro_components.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/utils/generate_feature_test_macro_components.py b/libcxx/utils/generate_feature_test_macro_components.py index 891981d45b8d..ed502184a341 100755 --- a/libcxx/utils/generate_feature_test_macro_components.py +++ b/libcxx/utils/generate_feature_test_macro_components.py @@ -213,7 +213,7 @@ feature_test_macros = [ add_version_header(x) for x in [ }, { "name": "__cpp_lib_constexpr_algorithms", "values": { "c++20": 201806 }, - "headers": ["algorithm"], + "headers": ["algorithm", "utility"], }, { "name": "__cpp_lib_constexpr_bitset", "values": { "c++2b": 202207 }, |