1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

scanner: vfmt scanner.v

This commit is contained in:
Delyan Angelov 2020-11-11 17:25:27 +02:00
parent 8c241cb745
commit 7d472d887e

View File

@ -500,7 +500,7 @@ pub fn (mut s Scanner) buffer_scan() token.Token {
}
return s.all_tokens[cidx]
}
return s.new_token(.eof, '', 1)
return s.new_token(.eof, '', 1)
}
[inline]