From 37b642708fc97a30a80033ef807a63ca57f2299a Mon Sep 17 00:00:00 2001 From: Eisenwave Date: Sun, 19 Jul 2026 09:58:49 +0200 Subject: [PATCH] Add __cpp_lib_constexpr_string feature-test macro See LWG4531. --- features_cpp26.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/features_cpp26.yaml b/features_cpp26.yaml index 7419373..a9a2639 100644 --- a/features_cpp26.yaml +++ b/features_cpp26.yaml @@ -1667,6 +1667,10 @@ features: ftm: - name: __cpp_lib_constexpr_format value: 202511L + desc: "`std::format` is `constexpr`" + - name: __cpp_lib_constexpr_string + value: 202511L + desc: "`std::to_string` and `std::to_wstring` are `constexpr`" - desc: "Optimize for `std::optional` in range adaptors" paper: P3913