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

*char => charptr everywhere

This commit is contained in:
Alexander Medvednikov
2019-12-01 10:33:26 +03:00
parent 698c3823ee
commit 3fea8f3de5
16 changed files with 30 additions and 28 deletions

View File

@@ -134,4 +134,4 @@ fn (r mut Registry) delete_entry(index int) {
fn invoke(p voidptr, arr Params){
handler := EventHandler{p}.func
handler(arr)
}
}

View File

@@ -39,4 +39,4 @@ fn test_params(){
fn on_test(p eventbus.Params) {
assert p.get_string("eventbus") == "vevent"
}
}