Skip to content

Commit

Permalink
Remove parentheses for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
hankluo6 committed Mar 3, 2024
1 parent 64aea8d commit a97952d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lpython/parser/tokenizer.re
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ void lex_int(Allocator &al, const unsigned char *s,
s = s + 2;
uint64_t n = get_value((char*)s, 2, loc);
u.from_smallint(n);
} else if ((std::tolower(s[1]) == 'o')) {
} else if (std::tolower(s[1]) == 'o') {
// Oct
s = s + 2;
uint64_t n = get_value((char*)s, 8, loc);
Expand Down

0 comments on commit a97952d

Please sign in to comment.