diff options
| author | gingerBill <bill@gingerbill.org> | 2021-02-19 11:31:14 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-02-19 11:31:14 +0000 |
| commit | efdee0dafb2b7568242173cb4549aba32f6f9e75 (patch) | |
| tree | cd1e66b987699f55f57c3c4f6097f1fb31cf0517 /src/query_data.cpp | |
| parent | f332cf498d83f4ef2da5ce1493347c1984cbf0d8 (diff) | |
Remove `bit_field` type from Odin (keyword and dead runtime code still exists)
Diffstat (limited to 'src/query_data.cpp')
| -rw-r--r-- | src/query_data.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/query_data.cpp b/src/query_data.cpp index 763665e61..ae68eb865 100644 --- a/src/query_data.cpp +++ b/src/query_data.cpp @@ -606,13 +606,11 @@ void generate_and_print_query_data_global_definitions(Checker *c, Timings *timin case Type_Union: type_kind = str_lit("union"); break; case Type_Enum: type_kind = str_lit("enum"); break; case Type_Proc: type_kind = str_lit("procedure"); break; - case Type_BitField: type_kind = str_lit("bit field"); break; case Type_BitSet: type_kind = str_lit("bit set"); break; case Type_SimdVector: type_kind = str_lit("simd vector"); break; case Type_Generic: case Type_Tuple: - case Type_BitFieldValue: GB_PANIC("Invalid definition type"); break; } |