mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
checker: disallow 'small_unsigned == signed' (#13967)
This commit is contained in:
@@ -9,7 +9,7 @@ import toml.util
|
||||
|
||||
pub const (
|
||||
digit_extras = [`_`, `.`, `x`, `o`, `b`, `e`, `E`]
|
||||
end_of_text = 4294967295
|
||||
end_of_text = u32(~0)
|
||||
)
|
||||
|
||||
// Scanner contains the necessary fields for the state of the scan process.
|
||||
|
Reference in New Issue
Block a user