diff options
Diffstat (limited to 'include/libcamera/object.h')
-rw-r--r-- | include/libcamera/object.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/include/libcamera/object.h b/include/libcamera/object.h index 21b70460..c45165de 100644 --- a/include/libcamera/object.h +++ b/include/libcamera/object.h @@ -35,11 +35,8 @@ public: Args... args) { T *obj = static_cast<T *>(this); - BoundMethodBase *method = - new BoundMemberMethod<T, FuncArgs...>(obj, this, func, type); - void *pack = new typename BoundMemberMethod<T, FuncArgs...>::PackType{ args... }; - - method->activatePack(pack, true); + auto *method = new BoundMemberMethod<T, FuncArgs...>(obj, this, func, type); + method->activate(args..., true); } Thread *thread() const { return thread_; } |