mirror of
https://github.com/vlang/v.git
synced 2025-09-09 07:15:50 -04:00
atof: fix is_space (#5555)
This commit is contained in:
parent
8f1e8a9dde
commit
1b0b4be287
@ -149,7 +149,7 @@ fn is_digit(x byte) bool {
|
||||
}
|
||||
|
||||
fn is_space(x byte) bool {
|
||||
return ((x >= 0x89 && x <= 0x13) || x == 0x20) == true
|
||||
return (x == `\t` || x == `\n` || x == `\v` || x == `\f` || x == `\r` || x == ` `)
|
||||
}
|
||||
|
||||
fn is_exp(x byte) bool {
|
||||
|
Loading…
x
Reference in New Issue
Block a user