We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e2e5cb commit 197d6caCopy full SHA for 197d6ca
1 file changed
src/lpython/parser/tokenizer.re
@@ -89,7 +89,7 @@ void lex_int(Allocator &al, const unsigned char *s,
89
s = s + 2;
90
uint64_t n = get_value((char*)s, 2, loc);
91
u.from_smallint(n);
92
- } else if ((std::tolower(s[1]) == 'o')) {
+ } else if (std::tolower(s[1]) == 'o') {
93
// Oct
94
95
uint64_t n = get_value((char*)s, 8, loc);
0 commit comments