summaryrefslogtreecommitdiff
path: root/src/utf8_iterator.hh
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2013-12-03 19:48:53 +0000
committerMaxime Coste <frrrwww@gmail.com>2013-12-03 19:49:09 +0000
commita443ff7ea6fb9da8446752cc6b3db234d4bc6255 (patch)
treeffe281b1944fc72f62f77f4708c8526d0fd0a090 /src/utf8_iterator.hh
parentdf57870470c0249b59f9203c16ddb7b8f3375d8e (diff)
indent fixes
Diffstat (limited to 'src/utf8_iterator.hh')
-rw-r--r--src/utf8_iterator.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utf8_iterator.hh b/src/utf8_iterator.hh
index 20027aa3..4fa206b3 100644
--- a/src/utf8_iterator.hh
+++ b/src/utf8_iterator.hh
@@ -56,7 +56,7 @@ public:
utf8_iterator operator+(CharCount count) const
{
if (count < 0)
- return operator-(-count);
+ return operator-(-count);
utf8_iterator res = *this;
while (count--)
@@ -67,7 +67,7 @@ public:
utf8_iterator operator-(CharCount count) const
{
if (count < 0)
- return operator+(-count);
+ return operator+(-count);
utf8_iterator res = *this;
while (count--)