summaryrefslogtreecommitdiff
path: root/src/common/logging/backend.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2018-07-20 15:31:25 -0400
committerGravatar Lioncash2018-07-20 15:31:27 -0400
commit7a1a860abe6a6032353209a3df3841ee574877a8 (patch)
tree8915e5513f3269d7842c87080f90be1db6f89309 /src/common/logging/backend.cpp
parentlogging/backend: Use std::string_view in RemoveBackend() and GetBackend() (diff)
downloadyuzu-7a1a860abe6a6032353209a3df3841ee574877a8.tar.gz
yuzu-7a1a860abe6a6032353209a3df3841ee574877a8.tar.xz
yuzu-7a1a860abe6a6032353209a3df3841ee574877a8.zip
logging/backend: Add missing standard includes
A few inclusions were being satisfied indirectly. To prevent breakages in the future, include these directly.
Diffstat (limited to 'src/common/logging/backend.cpp')
-rw-r--r--src/common/logging/backend.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp
index 3745af9df..59b999935 100644
--- a/src/common/logging/backend.cpp
+++ b/src/common/logging/backend.cpp
@@ -3,19 +3,20 @@
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include <algorithm> 5#include <algorithm>
6#include <array> 6#include <atomic>
7#include <chrono> 7#include <chrono>
8#include <climits> 8#include <climits>
9#include <condition_variable> 9#include <condition_variable>
10#include <memory> 10#include <memory>
11#include <mutex>
11#include <thread> 12#include <thread>
13#include <vector>
12#ifdef _WIN32 14#ifdef _WIN32
13#include <share.h> // For _SH_DENYWR 15#include <share.h> // For _SH_DENYWR
14#else 16#else
15#define _SH_DENYWR 0 17#define _SH_DENYWR 0
16#endif 18#endif
17#include "common/assert.h" 19#include "common/assert.h"
18#include "common/common_funcs.h" // snprintf compatibility define
19#include "common/logging/backend.h" 20#include "common/logging/backend.h"
20#include "common/logging/log.h" 21#include "common/logging/log.h"
21#include "common/logging/text_formatter.h" 22#include "common/logging/text_formatter.h"