diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2014-06-24 19:10:57 +0100 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2014-06-24 19:10:57 +0100 |
| commit | 5b27b956adaec761bff0700c38387a1dfbb77efc (patch) | |
| tree | 05e1027ec4e77103a31b78dcba89dd88f5ff569f /src/keys.cc | |
| parent | b934c8ede532284e5c961e10f1d7591d4e4de1a7 (diff) | |
Rename utf8::utf8_iterator to utf8::iterator
Diffstat (limited to 'src/keys.cc')
| -rw-r--r-- | src/keys.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keys.cc b/src/keys.cc index a899fb99..5dc5a1b9 100644 --- a/src/keys.cc +++ b/src/keys.cc @@ -42,7 +42,7 @@ KeyList parse_keys(StringView str) { KeyList result; using PassPolicy = utf8::InvalidBytePolicy::Pass; - using Utf8It = utf8::utf8_iterator<const char*, PassPolicy>; + using Utf8It = utf8::iterator<const char*, PassPolicy>; for (Utf8It it = str.begin(), str_end = str.end(); it < str_end; ++it) { if (*it == '<') |
