forked from OSchip/llvm-project
20869c5ba0
For an lvalue reference to a move only view x, views::all(x) gives hard error because the expression inside noexcept is not well formed and it is not SFINAE friendly. Given a move only view type `V`, and a concept ``` template <class R> concept can_all = requires { std::views::all(std::declval<R>()); }; ``` The expression `can_all<V&>` returns libstdc++: false msvc stl : false libc++ : error: static_cast from 'V' to 'typename decay<decltype((std::forward<V &>(__t)))>::type' (aka 'V') uses deleted function noexcept(noexcept(_LIBCPP_AUTO_CAST(std::forward<_Tp>(__t)))) The standard spec has its own problem, the spec says it is expression equivalent to `decay-copy(E)` but the spec of `decay-copy` does not have any constraint, which means the expression `decay-copy(declval<V&>())` is well-formed and the concept `can_all<V&>` should return true and should error when instantiating the function body of decay-copy. This is clearly wrong behaviour in the spec and we will probably create an LWG issue. But the libc++'s behaviour is clearly not correct. The `noexcept` is an "extension" in libc++ which is not in the spec, but the expression inside `noexpect` triggers hard error, which is not right. Reviewed By: #libc, ldionne, var-const Differential Revision: https://reviews.llvm.org/D128281 |
||
---|---|---|
.. | ||
access.h | ||
all.h | ||
common_view.h | ||
concepts.h | ||
copyable_box.h | ||
counted.h | ||
dangling.h | ||
data.h | ||
drop_view.h | ||
empty.h | ||
empty_view.h | ||
enable_borrowed_range.h | ||
enable_view.h | ||
filter_view.h | ||
iota_view.h | ||
join_view.h | ||
lazy_split_view.h | ||
non_propagating_cache.h | ||
owning_view.h | ||
range_adaptor.h | ||
rbegin.h | ||
ref_view.h | ||
rend.h | ||
reverse_view.h | ||
single_view.h | ||
size.h | ||
subrange.h | ||
take_view.h | ||
transform_view.h | ||
view_interface.h | ||
views.h | ||
zip_view.h |