This commit is contained in:
gingerBill
2024-02-22 17:26:32 +00:00
parent 007bd993a6
commit 59479b2ba6

View File

@@ -927,7 +927,7 @@ gb_internal void check_enum_type(CheckerContext *ctx, Type *enum_type, Type *nam
gb_internal bool is_valid_bit_field_backing_type(Type *type) {
if (type == nullptr) {
return nullptr;
return false;
}
type = base_type(type);
if (is_type_untyped(type)) {