diff options
| author | gingerBill <bill@gingerbill.org> | 2021-02-23 15:29:54 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-02-23 15:29:54 +0000 |
| commit | 28f279329da6f31b895145b9a021bacc7d9eea45 (patch) | |
| tree | de15e143e8d585fa4f4aa0b54356aac301220b2c /src/check_type.cpp | |
| parent | fe33a64b2ee6775275c6d1e5f1b54cf5ab0af753 (diff) | |
Remove `bit_field` keyword and parsing logic
Diffstat (limited to 'src/check_type.cpp')
| -rw-r--r-- | src/check_type.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/check_type.cpp b/src/check_type.cpp index bf3c72499..df8a54806 100644 --- a/src/check_type.cpp +++ b/src/check_type.cpp @@ -3517,12 +3517,6 @@ bool check_type_internal(CheckerContext *ctx, Ast *e, Type **type, Type *named_t return true; case_end; - case_ast_node(et, BitFieldType, e); - error(e, "'bit_field' types have now been removed"); - error_line("\tSuggestion: package math/bits 'bitfield_extract' and 'bitfield_insert' are better replacements\n"); - return false; - case_end; - case_ast_node(bs, BitSetType, e); *type = alloc_type_bit_set(); set_base_type(named_type, *type); |