| 468 | } |
| 469 | |
| 470 | inline bool IsStruct(const Type &type) { |
| 471 | return type.base_type == BASE_TYPE_STRUCT && type.struct_def->fixed; |
| 472 | } |
| 473 | |
| 474 | inline bool IsUnion(const Type &type) { |
| 475 | return type.enum_def != nullptr && type.enum_def->is_union; |
no outgoing calls
no test coverage detected