| 141 | |
| 142 | private: |
| 143 | static void CppCallDedirectToSafeCall(const FunctionObj* func, const AnyView* args, |
| 144 | int32_t num_args, Any* rv) { |
| 145 | FunctionObj* self = static_cast<FunctionObj*>(const_cast<FunctionObj*>(func)); |
| 146 | TVM_FFI_CHECK_SAFE_CALL(self->safe_call(self, reinterpret_cast<const TVMFFIAny*>(args), |
| 147 | num_args, reinterpret_cast<TVMFFIAny*>(rv))); |
| 148 | } |
| 149 | }; |
| 150 | |
| 151 | namespace details { |
nothing calls this directly
no outgoing calls
no test coverage detected