mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-31 03:40:08 +00:00
More minor stylization changes (remove unneeded parentheses)
This commit is contained in:
@@ -526,7 +526,7 @@ scan :: proc(s: ^Scanner) -> (tok: rune) {
|
||||
s.pos.line = 0;
|
||||
|
||||
redo: for {
|
||||
for (ch < utf8.RUNE_SELF && ch in s.whitespace) {
|
||||
for ch < utf8.RUNE_SELF && (ch in s.whitespace) {
|
||||
ch = advance(s);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user