mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
compiler: hide the u64 warning for now
This commit is contained in:
@@ -565,7 +565,7 @@ fn (p mut Parser) cast(typ string) {
|
|||||||
p.expected_type = typ
|
p.expected_type = typ
|
||||||
expr_typ := p.bool_expression()
|
expr_typ := p.bool_expression()
|
||||||
// Do not allow `int(my_int)`
|
// Do not allow `int(my_int)`
|
||||||
if expr_typ == typ {
|
if expr_typ == typ && typ != 'u64' {
|
||||||
p.warn('casting `$typ` to `$expr_typ` is not needed')
|
p.warn('casting `$typ` to `$expr_typ` is not needed')
|
||||||
}
|
}
|
||||||
// `face := FT_Face(cobj)` => `FT_Face face = *((FT_Face*)cobj);`
|
// `face := FT_Face(cobj)` => `FT_Face face = *((FT_Face*)cobj);`
|
||||||
|
|||||||
Reference in New Issue
Block a user