Skip to content

Commit 197d6ca

Browse files
committed
Remove parentheses for consistency
1 parent 3e2e5cb commit 197d6ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lpython/parser/tokenizer.re

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ void lex_int(Allocator &al, const unsigned char *s,
8989
s = s + 2;
9090
uint64_t n = get_value((char*)s, 2, loc);
9191
u.from_smallint(n);
92-
} else if ((std::tolower(s[1]) == 'o')) {
92+
} else if (std::tolower(s[1]) == 'o') {
9393
// Oct
9494
s = s + 2;
9595
uint64_t n = get_value((char*)s, 8, loc);

0 commit comments

Comments
 (0)