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
Pipeline #54251 passed with warnings
Pipeline: CaosDB Octave library

#54254

    Pipeline: caosdb-julialib

    #54253

      Pipeline: caosdb-cppinttest

      #54252

        ......@@ -29,10 +29,7 @@
        #include <memory> // for shared_ptr
        #include <string> // for string
        #include <vector> // for vector
        namespace std::filesystem {
        class path;
        }
        #include <filesystem> // for path
        namespace caosdb::logging {
        ......@@ -51,7 +48,7 @@ public:
        auto operator<<(const std::string &msg) -> LoggerOutputStream &;
        auto operator<<(void *msg) -> 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 {
        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