Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stl/inc/xutility
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ struct _Ptr_traits_base {
using _Reftype = conditional_t<is_void_v<_Elem>, 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);
}
};
Expand Down