diff options
Diffstat (limited to 'src/checker/type.cpp')
| -rw-r--r-- | src/checker/type.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/checker/type.cpp b/src/checker/type.cpp index e2506b3a2..04eefbcdd 100644 --- a/src/checker/type.cpp +++ b/src/checker/type.cpp @@ -268,6 +268,8 @@ gb_global Type *t_untyped_float = &basic_types[Basic_UntypedFloat]; gb_global Type *t_untyped_pointer = &basic_types[Basic_UntypedPointer]; gb_global Type *t_untyped_string = &basic_types[Basic_UntypedString]; gb_global Type *t_untyped_rune = &basic_types[Basic_UntypedRune]; +gb_global Type *t_byte = &basic_type_aliases[Basic_byte]; +gb_global Type *t_rune = &basic_type_aliases[Basic_rune]; b32 is_type_named(Type *t) { |