| 134 | } |
| 135 | |
| 136 | static std::unique_ptr<CObj> case_enum(EnumType const* Ty, void* Ptr) |
| 137 | { |
| 138 | return case_basic<EnumType::IntType>(Ty->getBasicType(), Ptr); |
| 139 | } |
| 140 | |
| 141 | static std::unique_ptr<CObj> case_pointer(PointerType const* Ty, void* Ptr) |
| 142 | { |
nothing calls this directly
no test coverage detected