diff options
| author | gingerBill <bill@gingerbill.org> | 2023-01-03 17:26:05 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2023-01-03 17:26:05 +0000 |
| commit | 855ebceadcc4612a6451f268ab6d6693838ed5f4 (patch) | |
| tree | eb26d4b572706c8b242ec437e3b552827f7e312f /src/check_builtin.cpp | |
| parent | 2720e9812778c8cf28ead9c41c46b0d578f6a7b3 (diff) | |
Minimize `add_type_info_type` usage
Diffstat (limited to 'src/check_builtin.cpp')
| -rw-r--r-- | src/check_builtin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/check_builtin.cpp b/src/check_builtin.cpp index 7c5521dde..606283c32 100644 --- a/src/check_builtin.cpp +++ b/src/check_builtin.cpp @@ -3573,7 +3573,7 @@ gb_internal bool check_builtin_procedure(CheckerContext *c, Operand *operand, As Entity *base_type_entity = alloc_entity_type_name(scope, token, elem, EntityState_Resolved); add_entity(c, scope, nullptr, base_type_entity); - add_type_info_type(c, soa_struct); + // add_type_info_type(c, soa_struct); operand->type = soa_struct; break; |