* 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:
Petr Hodina
2025-05-03 11:24:55 -07:00
committed by GitHub
co-authored by matlabbe
parent 087a2cecd8
commit 6b5b1c9617
@@ -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;