diff options
Diffstat (limited to 'libcxx/utils/generate_feature_test_macro_components.py')
-rwxr-xr-x | libcxx/utils/generate_feature_test_macro_components.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libcxx/utils/generate_feature_test_macro_components.py b/libcxx/utils/generate_feature_test_macro_components.py index ed015876aef..f5e770de5bb 100755 --- a/libcxx/utils/generate_feature_test_macro_components.py +++ b/libcxx/utils/generate_feature_test_macro_components.py @@ -565,6 +565,12 @@ feature_test_macros = sorted([ add_version_header(x) for x in [ "depends": "!defined(_LIBCPP_HAS_NO_THREADS)", "internal_depends": "!defined(_LIBCPP_HAS_NO_THREADS)", }, + {"name": "__cpp_lib_interpolate", + "values": { + "c++2a": 201902L, + }, + "headers": ["numeric"], + }, ]], key=lambda tc: tc["name"]) def get_std_dialects(): |