mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-12 19:19:03 +00:00
Merge pull request #13633 from jordan-woyak/libstdcpp-buildfix
DolphinQt/TAS: Use non-default std::atomic struct constructor to fix build with libstdc++ 15.
This commit is contained in:
commit
210b5cbf66
1 changed files with 2 additions and 2 deletions
|
@ -38,6 +38,6 @@ private:
|
||||||
int value = 0;
|
int value = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
std::atomic<State> m_ui_thread_state;
|
std::atomic<State> m_ui_thread_state = State{};
|
||||||
std::atomic<State> m_cpu_thread_state;
|
std::atomic<State> m_cpu_thread_state = State{};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue