-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Closed
Closed
Copy link
Labels
bugSomething isn't workingSomething isn't workingfixedSomething works now, yay!Something works now, yay!rangesC++20/23 rangesC++20/23 ranges
Description
Lines 183 to 190 in bc5a5c3
| _EXPORT_STD template <class _Left, class _Right> | |
| requires (_Range_adaptor_closure_object<_Right> && range<_Left>) | |
| _NODISCARD constexpr auto operator|(_Left&& __l, _Right&& __r) noexcept( | |
| noexcept(_STD forward<_Right>(__r)(_STD forward<_Left>(__l)))) | |
| requires requires { static_cast<_Right&&>(__r)(static_cast<_Left&&>(__l)); } | |
| { | |
| return _STD forward<_Right>(__r)(_STD forward<_Left>(__l)); | |
| } |
IIUC, LWG-3981 being tagged as NAD means it's a bug in MSVC-STL, right?
frederick-vs-ja
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingfixedSomething works now, yay!Something works now, yay!rangesC++20/23 rangesC++20/23 ranges