| 139 | } |
| 140 | |
| 141 | static std::unique_ptr<CObj> case_pointer(PointerType const* Ty, void* Ptr) |
| 142 | { |
| 143 | return std::unique_ptr<CObj>{new CPointerObj{*Ty, Data<void*>::view((void**)Ptr)}}; |
| 144 | } |
| 145 | |
| 146 | static std::unique_ptr<CObj> case_composite(StructType const* Ty, void* Ptr) |
| 147 | { |
nothing calls this directly
no outgoing calls
no test coverage detected