mirror of
https://github.com/introlab/rtabmap.git
synced 2026-09-08 12:30:20 +08:00
Fix ctor (#1496)
* CI: only build noetic in noetic-devel branch * fix ctor and dtor warning for UThreadC * revert CI changes --------- Co-authored-by: matlabbe <matlabbe@gmail.com>
This commit is contained in:
@@ -232,10 +232,10 @@ class UThreadC<void>
|
||||
typedef THREAD_HANDLE Handle;
|
||||
typedef void ( *Handler)();
|
||||
|
||||
virtual ~UThreadC<void>() {}
|
||||
virtual ~UThreadC() {}
|
||||
|
||||
protected:
|
||||
UThreadC<void>() {}
|
||||
UThreadC() {}
|
||||
|
||||
virtual void ThreadMain() = 0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user