mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-04 20:17:48 +00:00
Fix debug info issue
This commit is contained in:
@@ -912,7 +912,7 @@ Type *base_complex_elem_type(Type *t) {
|
||||
|
||||
bool is_type_struct(Type *t) {
|
||||
t = base_type(t);
|
||||
return (t->kind == Type_Struct && !t->Struct.is_raw_union);
|
||||
return t->kind == Type_Struct;
|
||||
}
|
||||
bool is_type_union(Type *t) {
|
||||
t = base_type(t);
|
||||
|
||||
Reference in New Issue
Block a user