COMMON: Revert unintended change

This commit is contained in:
Eugene Sandulenko 2020-10-05 16:30:13 +02:00
parent c52f7e0e04
commit 706d25d47e

View File

@ -93,7 +93,7 @@ template<class T, typename S = void *> class Callback: public BaseCallback<S> {
protected:
typedef void(T::*TMethod)(S);
T *_object;
;
TMethod _method;
public:
Callback(T *object, TMethod method): _object(object), _method(method) {}
virtual ~Callback() {}