diff options
author | Shauren <shauren.trinity@gmail.com> | 2023-01-05 12:16:21 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2023-08-12 14:27:25 +0200 |
commit | 73e7f0fe6d5ea2c75ad452effe9d7b95dd323ea2 (patch) | |
tree | 9ecf97ab29113b05a21a4953c8e4952076efbfd9 /src/common/Logging/Log.cpp | |
parent | d0553d499b17b5e20640cea5187934ff0bcbc528 (diff) |
Core/Misc: Added a include hack for msvc <chrono> to use only c++17 bits from it
(cherry picked from commit 585900f42d064b9f6adc08015605931163ea79c8)
Diffstat (limited to 'src/common/Logging/Log.cpp')
-rw-r--r-- | src/common/Logging/Log.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Logging/Log.cpp b/src/common/Logging/Log.cpp index c4a00af8c9e..96dadcb82c5 100644 --- a/src/common/Logging/Log.cpp +++ b/src/common/Logging/Log.cpp @@ -20,6 +20,7 @@ #include "AppenderFile.h" #include "Common.h" #include "Config.h" +#include "Duration.h" #include "Errors.h" #include "Logger.h" #include "LogMessage.h" @@ -27,7 +28,6 @@ #include "Strand.h" #include "StringConvert.h" #include "Util.h" -#include <chrono> #include <sstream> Log::Log() : AppenderId(0), lowestLogLevel(LOG_LEVEL_FATAL), _ioContext(nullptr), _strand(nullptr) |