summaryrefslogtreecommitdiff
path: root/src/utf8_iterator.hh
diff options
context:
space:
mode:
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 71681dcc..7b735aa5 100644
--- a/src/utf8_iterator.hh
+++ b/src/utf8_iterator.hh
@@ -100,7 +100,7 @@ public:
CharCount operator-(utf8_iterator other) const
{
- //assert(other < *this);
+ //kak_assert(other < *this);
check_invariant();
other.check_invariant();
CharCount dist = 0;
@@ -124,7 +124,7 @@ protected:
void check_invariant() const
{
// always point to a character first byte;
- // assert(is_character_start(it));
+ // kak_assert(is_character_start(it));
}
private: