diff options
| author | Stefan Boberg <[email protected]> | 2021-09-15 10:15:24 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-09-15 10:15:24 +0200 |
| commit | 6a5d207920f030e54710af12463f4a701c09b118 (patch) | |
| tree | f4a652fbd8e5670044e75794e85bfb8c85b09aa0 /zencore/filesystem.cpp | |
| parent | Changed so more loggers go via the zen::loggers interface (diff) | |
| download | zen-6a5d207920f030e54710af12463f4a701c09b118.tar.xz zen-6a5d207920f030e54710af12463f4a701c09b118.zip | |
Changed direct includes of spdlog/spdlog.h into zencore/logging.h to make it easier to tweak implementation
Diffstat (limited to 'zencore/filesystem.cpp')
| -rw-r--r-- | zencore/filesystem.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/zencore/filesystem.cpp b/zencore/filesystem.cpp index 09c2e7386..e03c3aa37 100644 --- a/zencore/filesystem.cpp +++ b/zencore/filesystem.cpp @@ -4,6 +4,7 @@ #include <zencore/except.h> #include <zencore/fmtutils.h> +#include <zencore/logging.h> #include <zencore/iobuffer.h> #include <zencore/string.h> #include <zencore/windows.h> @@ -14,8 +15,6 @@ #include <winnt.h> #include <filesystem> -#include <spdlog/spdlog.h> - #include <gsl/gsl-lite.hpp> namespace zen { |