summaryrefslogtreecommitdiff
path: root/src/common/logging/backend.h
diff options
context:
space:
mode:
authorGravatar bunnei2019-02-16 15:34:49 -0500
committerGravatar GitHub2019-02-16 15:34:49 -0500
commitcd7e1183e21002e9941e97358ff373abfade9132 (patch)
tree10f77ac5b28e08f1380a27410b15d0e0ab92e9c9 /src/common/logging/backend.h
parentMerge pull request #2123 from lioncash/coretiming-global (diff)
parentAdressed review comments (diff)
downloadyuzu-cd7e1183e21002e9941e97358ff373abfade9132.tar.gz
yuzu-cd7e1183e21002e9941e97358ff373abfade9132.tar.xz
yuzu-cd7e1183e21002e9941e97358ff373abfade9132.zip
Merge pull request #2128 from FearlessTobi/port-4197
Port citra-emu/citra#4197: "threadsafe_queue: Add PopWait and use it where possible "
Diffstat (limited to 'src/common/logging/backend.h')
-rw-r--r--src/common/logging/backend.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/logging/backend.h b/src/common/logging/backend.h
index 91bb0c309..a31ee6968 100644
--- a/src/common/logging/backend.h
+++ b/src/common/logging/backend.h
@@ -27,6 +27,7 @@ struct Entry {
27 unsigned int line_num; 27 unsigned int line_num;
28 std::string function; 28 std::string function;
29 std::string message; 29 std::string message;
30 bool final_entry = false;
30 31
31 Entry() = default; 32 Entry() = default;
32 Entry(Entry&& o) = default; 33 Entry(Entry&& o) = default;