mirror of https://github.com/WerWolv/ImHex
fix: Initializing std::atomic_flag makes no sense
This commit is contained in:
parent
f2e8d402dd
commit
c3421aef8c
|
|
@ -89,9 +89,9 @@ EXPORT_MODULE namespace hex {
|
||||||
std::atomic<bool> m_background = true;
|
std::atomic<bool> m_background = true;
|
||||||
std::atomic<bool> m_blocking = false;
|
std::atomic<bool> m_blocking = false;
|
||||||
|
|
||||||
std::atomic_flag m_interrupted = false;
|
std::atomic_flag m_interrupted;
|
||||||
std::atomic_flag m_finished = false;
|
std::atomic_flag m_finished;
|
||||||
std::atomic_flag m_hadException = false;
|
std::atomic_flag m_hadException;
|
||||||
std::string m_exceptionMessage;
|
std::string m_exceptionMessage;
|
||||||
|
|
||||||
struct TaskInterruptor { virtual ~TaskInterruptor() = default; };
|
struct TaskInterruptor { virtual ~TaskInterruptor() = default; };
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue