diff options
Diffstat (limited to 'src/string.cc')
| -rw-r--r-- | src/string.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string.cc b/src/string.cc index 91a31802..24db4579 100644 --- a/src/string.cc +++ b/src/string.cc @@ -115,7 +115,7 @@ bool subsequence_match(StringView str, StringView subseq) String expand_tabs(StringView line, CharCount tabstop, CharCount col) { String res; - using Utf8It = utf8::utf8_iterator<const char*>; + using Utf8It = utf8::iterator<const char*>; for (Utf8It it = line.begin(); it.base() < line.end(); ++it) { if (*it == '\t') |
