Update Foundation linking

This commit is contained in:
gingerBill
2022-02-09 21:42:20 +00:00
parent b6abaf739c
commit 42a1c58a80
3 changed files with 32 additions and 32 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ Copying :: struct($T: typeid) {using _: Object}
alloc :: proc($T: typeid) -> ^T where intrinsics.type_is_subtype_of(T, Object) {
return msgSend(^T, T, "alloc")
}
init :: proc(self: ^$T) -> ^T where intrinsics.type_is_subtype_of(T, Object){
init :: proc(self: ^$T) -> ^T where intrinsics.type_is_subtype_of(T, Object) {
return msgSend(^T, self, "init")
}
retain :: proc(self: ^$T) -> ^T where intrinsics.type_is_subtype_of(T, Object) {