1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

checker: reject void type condition (#8737)

This commit is contained in:
zakuro
2021-02-14 15:33:24 +09:00
committed by GitHub
parent 3d29f819cf
commit e4f15605c0
4 changed files with 35 additions and 5 deletions

View File

@ -213,7 +213,7 @@ fn C.RemoveDirectory() int
fn C.GetStdHandle(u32) voidptr
// fn C.SetConsoleMode()
fn C.SetConsoleMode(voidptr, u32)
fn C.SetConsoleMode(voidptr, u32) int
// fn C.GetConsoleMode() int
fn C.GetConsoleMode(voidptr, &u32) int