- fix compilation on Windows

This commit is contained in:
2025-12-12 07:06:49 +03:00
parent 186ec4ccb4
commit 786cefed45
2 changed files with 9 additions and 0 deletions

View File

@@ -8,6 +8,7 @@
#include <string>
#include <sstream>
#include <filesystem>
#ifdef _WIN32
# include <winsock2.h>
@@ -125,6 +126,7 @@ public:
Logger& operator << (const int64_t data);
Logger& operator << (const unsigned int data);
Logger& operator << (const uint64_t data);
Logger& operator << (const std::filesystem::path& p);
protected:
LogGuard mGuard;