Remove #opaque types

This commit is contained in:
gingerBill
2021-02-23 15:45:06 +00:00
parent 28f279329d
commit 41b854f192
23 changed files with 2 additions and 262 deletions
-2
View File
@@ -243,8 +243,6 @@ clone_node :: proc(node: ^Node) -> ^Node {
r.type = clone(r.type);
case Distinct_Type:
r.type = clone(r.type);
case Opaque_Type:
r.type = clone(r.type);
case Poly_Type:
r.type = auto_cast clone(r.type);
r.specialization = clone(r.specialization);