Change semantics for distinctness for pointers, arrays, dynamic arrays, and maps.

This commit is contained in:
gingerBill
2018-05-12 10:47:32 +01:00
parent 9fbfd86cde
commit 20fbece14c

View File

@@ -199,7 +199,7 @@ bool is_type_distinct(AstNode *node) {
case AstNode_ArrayType:
case AstNode_DynamicArrayType:
case AstNode_MapType:
return true;
return false;
}
return false;
}