Skip to content
Snippets Groups Projects
Commit 2f4f4c66 authored by Beat Küng's avatar Beat Küng Committed by Daniel Agar
Browse files

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.
parent 481bfc63
No related branches found
No related tags found
No related merge requests found
......@@ -115,7 +115,7 @@ template<class T>
class ModuleBase
{
public:
ModuleBase() = default;
ModuleBase() : _task_should_exit{false} {}
virtual ~ModuleBase() {}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment