Skip to content

Commit 973321e

Browse files
authored
FIX: estring split in non-consecutive merge mode (alibaba#1071)
1 parent d6de860 commit 973321e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

common/estring.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ class estring_view : public std::string_view
160160
}
161161
iterator& operator++()
162162
{
163-
_part = _host->find_part(_part.end());
163+
_part = _host->find_part(_part.end() + 1);
164164
return *this;
165165
}
166166
iterator& operator++(int)

0 commit comments

Comments
 (0)