| 330 | explicit View(const CType* ptr) : m_ptr{check(ptr)} {} |
| 331 | |
| 332 | const CType* get() const { return m_ptr; } |
| 333 | }; |
| 334 | |
| 335 | template <typename CType, CType* (*CopyFunc)(const CType*), void (*DestroyFunc)(CType*)> |
no outgoing calls
no test coverage detected