| 2614 | } |
| 2615 | |
| 2616 | std::vector<Type const*> StructType::decomposition() const |
| 2617 | { |
| 2618 | std::vector<Type const*> res; |
| 2619 | for (MemberList::Member const& member: members(nullptr)) |
| 2620 | res.push_back(member.type); |
| 2621 | return res; |
| 2622 | } |
| 2623 | |
| 2624 | Type const* EnumType::encodingType() const |
| 2625 | { |