fix: clean up compiler warnings and unused variables

This commit is contained in:
2026-05-15 18:01:11 +03:00
parent 92e6b99df2
commit c5751b4a0c
6 changed files with 10 additions and 14 deletions
+1 -1
View File
@@ -416,7 +416,7 @@ proc peekRune(l: Lexer): Rune =
return r
return Rune(0)
proc advanceRune(l: var Lexer): Rune =
proc advanceRune(l: var Lexer): Rune {.used.} =
if l.pos < l.input.len:
var r: Rune
fastRuneAt(l.input, l.pos, r, true)