mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-22 01:12:31 +00:00
px4_module: explicitly call the constructor of _task_should_exit
Workaround for a GCC bug (https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58930) Triggered with the bebop toolchain.
This commit is contained in:
@@ -115,7 +115,7 @@ template<class T>
|
|||||||
class ModuleBase
|
class ModuleBase
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ModuleBase() = default;
|
ModuleBase() : _task_should_exit{false} {}
|
||||||
virtual ~ModuleBase() {}
|
virtual ~ModuleBase() {}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user