diff options
Diffstat (limited to 'gentoobrowse-api/service/maintenance/useLocalProcessor.h')
-rw-r--r-- | gentoobrowse-api/service/maintenance/useLocalProcessor.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gentoobrowse-api/service/maintenance/useLocalProcessor.h b/gentoobrowse-api/service/maintenance/useLocalProcessor.h index 4e4bace..4186a33 100644 --- a/gentoobrowse-api/service/maintenance/useLocalProcessor.h +++ b/gentoobrowse-api/service/maintenance/useLocalProcessor.h @@ -4,7 +4,7 @@ #include "abstractFileProcessor.h" #include <connection.h> #include <modifycommand.h> -#include <boost/filesystem/path.hpp> +#include <filesystem> namespace Gentoo { namespace Service { @@ -14,8 +14,8 @@ namespace Gentoo { unsigned char order() const override; bool match(const PathParts & pp) const override; - void created(DB::Connection * dbc, int64_t repoid, const Gentoo::StringList & fn, const boost::filesystem::path & path) override; - void modified(DB::Connection * dbc, int64_t repoid, const Gentoo::StringList & fn, const boost::filesystem::path & path) override; + void created(DB::Connection * dbc, int64_t repoid, const Gentoo::StringList & fn, const std::filesystem::path & path) override; + void modified(DB::Connection * dbc, int64_t repoid, const Gentoo::StringList & fn, const std::filesystem::path & path) override; void deleted(DB::Connection * dbc, int64_t repoid, const Gentoo::StringList & fn) override; }; } |