mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
remove old types and
This commit is contained in:
@ -85,7 +85,7 @@ fn (s mut Scanner) ident_number() string {
|
||||
if c == `.` {
|
||||
is_float = true
|
||||
}
|
||||
is_good_hex := is_hex && (c == `x` || c == `u` || (c >= `a` && c <= `f`))
|
||||
is_good_hex := is_hex && (c == `x` || (c >= `a` && c <= `f`))
|
||||
// 1e+3, 1e-3, 1e3
|
||||
if !is_hex && c == `e` {
|
||||
next := s.text[s.pos + 1]
|
||||
|
Reference in New Issue
Block a user