From 47339c8f8a477464b6fe44992200bd2b840da8f4 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Wed, 4 Mar 2026 11:58:37 +0000 Subject: [PATCH] libstdc++: Change comment on #endif to match #if condition [PR124363] I changed the #if in r8-3123-gc6888c62577671 but didn't make the corresponding change to the #endif. libstdc++-v3/ChangeLog: PR libstdc++/124363 * include/std/string_view: Adjust comment on #endif to match #if condition. --- libstdc++-v3/include/std/string_view | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libstdc++-v3/include/std/string_view b/libstdc++-v3/include/std/string_view index 153014d9b40..735d46f2de7 100644 --- a/libstdc++-v3/include/std/string_view +++ b/libstdc++-v3/include/std/string_view @@ -929,6 +929,6 @@ _GLIBCXX_END_NAMESPACE_VERSION #endif #endif -#endif // __cplusplus <= 201402L +#endif // C++17 #endif // _GLIBCXX_STRING_VIEW