mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
checker: do not allow extra () in if conditions
This commit is contained in:
@ -334,7 +334,7 @@ fn parser(s string) (int,PrepNumber) {
|
||||
result = parser_pzero
|
||||
}
|
||||
}
|
||||
else if (pn.exponent > 309) {
|
||||
else if pn.exponent > 309 {
|
||||
if pn.negative {
|
||||
result = parser_minf
|
||||
}
|
||||
|
Reference in New Issue
Block a user