https://gcc.gnu.org/g:47339c8f8a477464b6fe44992200bd2b840da8f4
commit r16-7893-g47339c8f8a477464b6fe44992200bd2b840da8f4 Author: Jonathan Wakely <[email protected]> Date: Wed Mar 4 11:58:37 2026 +0000 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. Diff: --- 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 153014d9b409..735d46f2de7f 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
