diff options
Diffstat (limited to 'src/types.cpp')
| -rw-r--r-- | src/types.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/types.cpp b/src/types.cpp index 3e8d024e4..727dd4a57 100644 --- a/src/types.cpp +++ b/src/types.cpp @@ -217,6 +217,7 @@ struct Type { }; + // TODO(bill): Should I add extra information here specifying the kind of selection? // e.g. field, constant, array field, type field, etc. struct Selection { @@ -481,12 +482,6 @@ Type *alloc_type(gbAllocator a, TypeKind kind) { } -Type *make_type_basic(gbAllocator a, BasicType basic) { - Type *t = alloc_type(a, Type_Basic); - t->Basic = basic; - return t; -} - Type *make_type_generic(gbAllocator a, Scope *scope, i64 id, String name, Type *specialized) { Type *t = alloc_type(a, Type_Generic); t->Generic.id = id; |