Correct is_type_comparable for bit_field

This commit is contained in:
gingerBill
2024-03-04 20:10:34 +00:00
parent 4c35633e01
commit 3e295734cb

View File

@@ -2400,6 +2400,9 @@ gb_internal bool is_type_comparable(Type *t) {
case Type_SimdVector:
return true;
case Type_BitField:
return is_type_comparable(t->BitField.backing_type);
}
return false;
}