Skip to content

Commit a0a5aae

Browse files
Update libcxx/include/__ranges/concat_view.h
Co-authored-by: A. Jiang <[email protected]>
1 parent 18f829c commit a0a5aae

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
@@ -402,7 +402,7 @@ class concat_view<_Views...>::__iterator {
402402
requires(equality_comparable<iterator_t<__maybe_const<_Const, _Views>>> && ...)
403403
{
404404
_LIBCPP_ASSERT_VALID_ELEMENT_ACCESS(
405-
!__x.__it_.valueless_by_exception(), "Trying to convert from a valueless iterator of concat_view.");
405+
!__x.__it_.valueless_by_exception(), "Trying to compare a valueless iterator of concat_view.");
406406
_LIBCPP_ASSERT_VALID_ELEMENT_ACCESS(
407407
!__y.__it_.valueless_by_exception(), "Trying to convert from a valueless iterator of concat_view.");
408408
return __x.__it_ == __y.__it_;

0 commit comments

Comments
 (0)