[LOCAL] Remove double definition of task wrapper after merge conflict

This commit is contained in:
Riccardo Cipolleschi
2023-05-26 10:32:35 +01:00
parent 74e3803e4c
commit a4aaee0c5e
@@ -19,12 +19,6 @@ struct TaskWrapper : public jsi::HostObject {
std::shared_ptr<Task> task;
};
struct TaskWrapper : public jsi::HostObject {
TaskWrapper(std::shared_ptr<Task> const &task) : task(task) {}
std::shared_ptr<Task> task;
};
inline static jsi::Value valueFromTask(
jsi::Runtime &runtime,
std::shared_ptr<Task> task) {