mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 07:38:48 +00:00
Correct is_type_comparable for bit_field
This commit is contained in:
@@ -2400,6 +2400,9 @@ gb_internal bool is_type_comparable(Type *t) {
|
|||||||
|
|
||||||
case Type_SimdVector:
|
case Type_SimdVector:
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
|
case Type_BitField:
|
||||||
|
return is_type_comparable(t->BitField.backing_type);
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user