Replace usage of inline proc with #force_inline proc in the core library

This commit is contained in:
gingerBill
2021-02-23 16:14:47 +00:00
parent 41b854f192
commit aa93305015
26 changed files with 182 additions and 182 deletions
+1 -1
View File
@@ -201,7 +201,7 @@ as_bytes :: proc(v: any) -> []byte {
return nil;
}
any_data :: inline proc(v: any) -> (data: rawptr, id: typeid) {
any_data :: #force_inline proc(v: any) -> (data: rawptr, id: typeid) {
return v.data, v.id;
}