Fix bug in lexing a word directly after an empty comment
This commit is contained in:
parent
8b1263c376
commit
935420d418
1 changed files with 0 additions and 1 deletions
|
@ -118,7 +118,6 @@ namespace bolt {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (C0 == '#') {
|
if (C0 == '#') {
|
||||||
getChar();
|
|
||||||
auto C1 = peekChar(0);
|
auto C1 = peekChar(0);
|
||||||
auto C2 = peekChar(1);
|
auto C2 = peekChar(1);
|
||||||
if (C1 == '!' && C2 == '!') {
|
if (C1 == '!' && C2 == '!') {
|
||||||
|
|
Loading…
Reference in a new issue