| 464 | }; |
| 465 | |
| 466 | inline bool IsString(const Type &type) { |
| 467 | return type.base_type == BASE_TYPE_STRING; |
| 468 | } |
| 469 | |
| 470 | inline bool IsStruct(const Type &type) { |
| 471 | return type.base_type == BASE_TYPE_STRUCT && type.struct_def->fixed; |
no outgoing calls
no test coverage detected