| 170 | */ |
| 171 | template <typename... Args> |
| 172 | explicit FunctionObjImpl(Args&&... args) : callable_(std::forward<Args>(args)...) { |
| 173 | this->safe_call = SafeCall; |
| 174 | this->cpp_call = reinterpret_cast<void*>(CppCall); |
| 175 | } |
| 176 | |
| 177 | FunctionObjImpl(const FunctionObjImpl&) = delete; |
| 178 | FunctionObjImpl& operator=(const FunctionObjImpl&) = delete; |
nothing calls this directly
no outgoing calls
no test coverage detected