bootmanager: In-class initialize EmuThread's boolean member variables
Trims down the initializer list a little.
This commit is contained in:
parent
9699194b54
commit
c06f7978ac
2 changed files with 4 additions and 5 deletions
|
@ -71,9 +71,9 @@ public:
|
|||
};
|
||||
|
||||
private:
|
||||
bool exec_step;
|
||||
bool running;
|
||||
std::atomic<bool> stop_run;
|
||||
bool exec_step = false;
|
||||
bool running = false;
|
||||
std::atomic<bool> stop_run{false};
|
||||
std::mutex running_mutex;
|
||||
std::condition_variable running_cv;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue