WorkItem modules: Run() shouldn't be public

This commit is contained in:
Daniel Agar
2020-01-22 10:03:20 -05:00
parent 8162b1095b
commit 21a8d7db7f
23 changed files with 48 additions and 47 deletions

View File

@@ -47,10 +47,11 @@ public:
int main();
void Run() override;
static px4::AppState appState; /* track requests to terminate app */
private:
void Run() override;
int _iter{0};
};

View File

@@ -47,10 +47,11 @@ public:
int main();
void Run() override;
static px4::AppState appState; /* track requests to terminate app */
private:
void Run() override;
int _iter{0};
};