diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2013-12-03 19:48:53 +0000 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2013-12-03 19:49:09 +0000 |
| commit | a443ff7ea6fb9da8446752cc6b3db234d4bc6255 (patch) | |
| tree | ffe281b1944fc72f62f77f4708c8526d0fd0a090 /src/utf8_iterator.hh | |
| parent | df57870470c0249b59f9203c16ddb7b8f3375d8e (diff) | |
indent fixes
Diffstat (limited to 'src/utf8_iterator.hh')
| -rw-r--r-- | src/utf8_iterator.hh | 4 |
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--) |
