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

CI: fix building v

This commit is contained in:
joe-conigliaro
2019-10-14 15:08:02 +11:00
committed by Alexander Medvednikov
parent e2bca190a9
commit de10a529b0
4 changed files with 8 additions and 11 deletions

View File

@ -22,9 +22,6 @@ struct map {
//return false
//}
fn (m mut map) _set(key string, val voidptr) {
}
//fn preorder_keys(node &mapnode, keys mut []string, key_i int) int {
//return 0
//}
@ -40,7 +37,7 @@ fn (m map) get(key string, out voidptr) bool {
pub fn (m mut map) delete(key string) {
}
fn (m map) _exists(key string) bool {
fn (m map) exists(key string) bool {
return false
}