mirror of
https://github.com/TomHarte/CLK.git
synced 2026-04-23 14:25:11 +00:00
Increases const correctness, marks some additional constructors as constexpr, switches std::atomic construction style.
This commit is contained in:
@@ -104,7 +104,7 @@ struct MachineRunner {
|
||||
Stopping,
|
||||
Stopped
|
||||
};
|
||||
std::atomic<State> state_ = State::Running;
|
||||
std::atomic<State> state_{State::Running};
|
||||
|
||||
Time::ScanSynchroniser scan_synchroniser_;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user