diff options
author | Mai M <mathew1800@gmail.com> | 2022-03-10 14:07:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-10 14:07:41 +0100 |
commit | e200161982dcbafc4bdd8da86a721c56384c6f40 (patch) | |
tree | 5c2ba970cab18804aba18129be23a15b003f4568 /src/common/logging | |
parent | Merge pull request #7998 from Wunkolo/cpuid_array (diff) | |
parent | backend: Ensure backend_thread is destructed before message_queue (diff) | |
download | yuzu-e200161982dcbafc4bdd8da86a721c56384c6f40.tar yuzu-e200161982dcbafc4bdd8da86a721c56384c6f40.tar.gz yuzu-e200161982dcbafc4bdd8da86a721c56384c6f40.tar.bz2 yuzu-e200161982dcbafc4bdd8da86a721c56384c6f40.tar.lz yuzu-e200161982dcbafc4bdd8da86a721c56384c6f40.tar.xz yuzu-e200161982dcbafc4bdd8da86a721c56384c6f40.tar.zst yuzu-e200161982dcbafc4bdd8da86a721c56384c6f40.zip |
Diffstat (limited to '')
-rw-r--r-- | src/common/logging/backend.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index f1c9ed6c4..4a2462ec4 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -276,9 +276,9 @@ private: ColorConsoleBackend color_console_backend{}; FileBackend file_backend; - std::jthread backend_thread; MPSCQueue<Entry, true> message_queue{}; std::chrono::steady_clock::time_point time_origin{std::chrono::steady_clock::now()}; + std::jthread backend_thread; }; } // namespace |