Procedure Literal

This commit is contained in:
gingerBill
2016-07-22 16:09:49 +01:00
parent 86c083535f
commit f8fd6fce0b
7 changed files with 124 additions and 47 deletions
+5
View File
@@ -307,6 +307,11 @@ b32 are_types_identical(Type *x, Type *y) {
if (x == y)
return true;
if ((x == NULL && y != NULL) ||
(x != NULL && y == NULL)) {
return false;
}
switch (x->kind) {
case Type_Basic:
if (y->kind == Type_Basic)