summaryrefslogtreecommitdiff
path: root/src/utf8.hh
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2013-04-09 20:04:11 +0200
committerMaxime Coste <frrrwww@gmail.com>2013-04-09 20:04:11 +0200
commit5adee4a6a7e63aed3fac3cd8c9456d2ee1cd06a1 (patch)
tree6cc5a0d0628ab4d631f0cffd53a062cc417753a2 /src/utf8.hh
parent34b8604f902042985fa9a7101427f5eafadee55e (diff)
rename assert to kak_assert to avoid collisions
Diffstat (limited to 'src/utf8.hh')
-rw-r--r--src/utf8.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utf8.hh b/src/utf8.hh
index ebbb430f..4113c9fe 100644
--- a/src/utf8.hh
+++ b/src/utf8.hh
@@ -95,7 +95,7 @@ namespace InvalidBytePolicy
struct Assert
{
- Codepoint operator()(char byte) const { assert(false); return byte; }
+ Codepoint operator()(char byte) const { kak_assert(false); return byte; }
};
struct Pass