Skip to content

Commit 29114a2

Browse files
Update libcxx/include/__ranges/concat_view.h
Co-authored-by: A. Jiang <[email protected]>
1 parent 2a20f2b commit 29114a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/include/__ranges/concat_view.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ class concat_view<_Views...>::__iterator {
523523

524524
{
525525
_LIBCPP_ASSERT_VALID_ELEMENT_ACCESS(
526-
!__it.__it_.valueless_by_exception(), "Trying to convert from a valueless iterator of concat_view.");
526+
!__it.__it_.valueless_by_exception(), "Trying to apply iter_move to a valueless iterator of concat_view.");
527527
return __variant_detail::__visitation::__variant::__visit_value(
528528
[](const auto& __i) -> __concat_rvalue_reference_t<__maybe_const<_Const, _Views>...> {
529529
return ranges::iter_move(__i);

0 commit comments

Comments
 (0)