Fix bug in lexing a word directly after an empty comment

This commit is contained in:
Sam Vervaeck 2023-06-15 16:40:28 +02:00
parent 8b1263c376
commit 935420d418
Signed by: samvv
SSH key fingerprint: SHA256:dIg0ywU1OP+ZYifrYxy8c5esO72cIKB+4/9wkZj1VaY

View file

@ -118,7 +118,6 @@ namespace bolt {
continue;
}
if (C0 == '#') {
getChar();
auto C1 = peekChar(0);
auto C2 = peekChar(1);
if (C1 == '!' && C2 == '!') {