diff options
author | Lioncash <mathew1800@gmail.com> | 2018-07-20 15:31:25 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-07-20 15:31:27 -0400 |
commit | 7a1a860abe6a6032353209a3df3841ee574877a8 (patch) | |
tree | 8915e5513f3269d7842c87080f90be1db6f89309 /src/common/logging/backend.cpp | |
parent | 457d1b4490dbc293246f372532a81a9e90d366c4 (diff) |
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.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index 3745af9dfb..59b999935b 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -3,19 +3,20 @@ // Refer to the license.txt file included. #include <algorithm> -#include <array> +#include <atomic> #include <chrono> #include <climits> #include <condition_variable> #include <memory> +#include <mutex> #include <thread> +#include <vector> #ifdef _WIN32 #include <share.h> // For _SH_DENYWR #else #define _SH_DENYWR 0 #endif #include "common/assert.h" -#include "common/common_funcs.h" // snprintf compatibility define #include "common/logging/backend.h" #include "common/logging/log.h" #include "common/logging/text_formatter.h" |