1
0
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:
Nick Treleaven
2022-04-12 17:37:30 +01:00
committed by GitHub
parent 6718958058
commit c780de6282
15 changed files with 116 additions and 33 deletions

View File

@@ -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.