Skip to content

Commit 67023db

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

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
@@ -357,7 +357,7 @@ class concat_view<_Views...>::__iterator {
357357

358358
_LIBCPP_HIDE_FROM_ABI constexpr __iterator& operator++() {
359359
_LIBCPP_ASSERT_VALID_ELEMENT_ACCESS(
360-
!__it_.valueless_by_exception(), "Trying to convert from a valueless iterator of concat_view.");
360+
!__it_.valueless_by_exception(), "Trying to increment a valueless iterator of concat_view.");
361361
size_t __active_index = __it_.index();
362362
__apply_at_index<variant_size_v<decltype(__it_)>>(__active_index, [&](auto __index_constant) {
363363
constexpr size_t __i = __index_constant.value;

0 commit comments

Comments
 (0)