Skip to content
Snippets Groups Projects
Commit 66bca40f authored by Joscha Schmiedt's avatar Joscha Schmiedt
Browse files

FIX: Fix missing <filesystem> include

parent 9d93071d
No related branches found
No related tags found
2 merge requests!61Release 0.3.0,!48Fix compilation errors on Windows
Checking pipeline status
...@@ -29,10 +29,7 @@ ...@@ -29,10 +29,7 @@
#include <memory> // for shared_ptr #include <memory> // for shared_ptr
#include <string> // for string #include <string> // for string
#include <vector> // for vector #include <vector> // for vector
#include <filesystem> // for path
namespace std::filesystem {
class path;
}
namespace caosdb::logging { namespace caosdb::logging {
...@@ -51,7 +48,7 @@ public: ...@@ -51,7 +48,7 @@ public:
auto operator<<(const std::string &msg) -> LoggerOutputStream &; auto operator<<(const std::string &msg) -> LoggerOutputStream &;
auto operator<<(void *msg) -> LoggerOutputStream &; auto operator<<(void *msg) -> LoggerOutputStream &;
auto operator<<(std::filesystem::path *path) -> LoggerOutputStream &; auto operator<<(std::filesystem::path *path) -> LoggerOutputStream &;
LoggerOutputStream &operator<<(const std::filesystem::path &path); auto operator<<(const std::filesystem::path &path) -> LoggerOutputStream &;
static auto get(const std::string &channel, int level) -> LoggerOutputStream { static auto get(const std::string &channel, int level) -> LoggerOutputStream {
return LoggerOutputStream(channel, level); return LoggerOutputStream(channel, level);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment