diff options
author | bunnei <bunneidev@gmail.com> | 2019-02-16 15:34:49 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-16 15:34:49 -0500 |
commit | cd7e1183e21002e9941e97358ff373abfade9132 (patch) | |
tree | 10f77ac5b28e08f1380a27410b15d0e0ab92e9c9 /src/common/logging/backend.h | |
parent | 99da6362c43a24c608a2790f668f10a62e3b80a6 (diff) | |
parent | 2195f10d152a52e01ccab0a6528f8758752d66a9 (diff) |
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.h | 1 |
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 { unsigned int line_num; std::string function; std::string message; + bool final_entry = false; Entry() = default; Entry(Entry&& o) = default; |