1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-09-20 17:28:14 +03:00

Avoid postfix increment in utf8::distance

This commit is contained in:
Maxime Coste 2016-07-15 19:57:11 +01:00
parent 4ecdbea5c4
commit 73fdc726fb

View File

@ -67,6 +67,7 @@ Iterator advance(Iterator it, const Iterator& end, CharCount d)
// return true if it points to the first byte of a (either single or
// multibyte) character
[[gnu::always_inline]]
inline bool is_character_start(char c)
{
return (c & 0xC0) != 0x80;
@ -80,7 +81,7 @@ CharCount distance(Iterator begin, const Iterator& end)
while (begin != end)
{
if (is_character_start(*begin++))
if (is_character_start(read(begin)))
++dist;
}
return dist;