We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a823e0 commit c77f47dCopy full SHA for c77f47d
libcxx/include/__ranges/concat_view.h
@@ -350,7 +350,7 @@ class concat_view<_Views...>::__iterator {
350
351
_LIBCPP_HIDE_FROM_ABI constexpr decltype(auto) operator*() const {
352
_LIBCPP_ASSERT_VALID_ELEMENT_ACCESS(
353
- !__it_.valueless_by_exception(), "Trying to convert from a valueless iterator of concat_view.");
+ !__it_.valueless_by_exception(), "Trying to dereference a valueless iterator of concat_view.");
354
return __variant_detail::__visitation::__variant::__visit_value(
355
[](auto&& __it) -> __concat_reference_t<__maybe_const<_Const, _Views>...> { return *__it; }, __it_);
356
}
0 commit comments