summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/core/common/CharReader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/common/CharReader.cpp b/src/core/common/CharReader.cpp
index 4bd81ed..1a52f53 100644
--- a/src/core/common/CharReader.cpp
+++ b/src/core/common/CharReader.cpp
@@ -336,7 +336,7 @@ bool Buffer::atEnd(Buffer::CursorId cursor) const
(c.bucket == endBucket && c.bucketOffs == endBucket->size());
}
-bool Buffer::fetchCharacter(CursorId cursor, char &c, bool incr)
+inline bool Buffer::fetchCharacter(CursorId cursor, char &c, bool incr)
{
Cursor &cur = cursors[cursor];
while (true) {