From 576f4c96305ca2ebcbdcba117de924928ee27c78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vojt=C4=9Bch=20Michal?= Date: Tue, 25 Nov 2025 12:02:38 +0100 Subject: [PATCH] Remove source code reference to LWG-3454. --- stl/inc/xutility | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stl/inc/xutility b/stl/inc/xutility index 03fdab423d9..e2b4083cf83 100644 --- a/stl/inc/xutility +++ b/stl/inc/xutility @@ -624,7 +624,7 @@ struct _Ptr_traits_base { using _Reftype = conditional_t, char, _Elem>&; _NODISCARD static _CONSTEXPR20 pointer pointer_to(_Reftype _Val) - noexcept(noexcept(_Ty::pointer_to(_Val))) /* strengthened */ { // Per LWG-3454 + noexcept(noexcept(_Ty::pointer_to(_Val))) /* strengthened */ { return _Ty::pointer_to(_Val); } };