summaryrefslogtreecommitdiff
path: root/src/string.cc
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2014-06-24 19:10:57 +0100
committerMaxime Coste <frrrwww@gmail.com>2014-06-24 19:10:57 +0100
commit5b27b956adaec761bff0700c38387a1dfbb77efc (patch)
tree05e1027ec4e77103a31b78dcba89dd88f5ff569f /src/string.cc
parentb934c8ede532284e5c961e10f1d7591d4e4de1a7 (diff)
Rename utf8::utf8_iterator to utf8::iterator
Diffstat (limited to 'src/string.cc')
-rw-r--r--src/string.cc2
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')