| 170 | std::function<void()> func; |
| 171 | jobject ref; |
| 172 | FuncData() : |
| 173 | func(nullptr), ref(nullptr) {} |
| 174 | FuncData(std::function<void()> p_func, jobject p_ref) : |
| 175 | func(p_func), ref(p_ref) {} |
| 176 | } FuncData; |
nothing calls this directly
no outgoing calls
no test coverage detected