forked from Archive/PX4-Autopilot
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:
parent
481bfc6308
commit
2f4f4c6623
|
@ -115,7 +115,7 @@ template<class T>
|
|||
class ModuleBase
|
||||
{
|
||||
public:
|
||||
ModuleBase() = default;
|
||||
ModuleBase() : _task_should_exit{false} {}
|
||||
virtual ~ModuleBase() {}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue