refactor(Core): replace boost::filesystem with std::filesystem (#6800)

This commit is contained in:
Francesco Borzì
2021-07-09 16:43:51 +02:00
committed by GitHub
parent f79e23e887
commit ebb80145b3
6 changed files with 24 additions and 28 deletions

View File

@@ -12,11 +12,7 @@
#include <string>
#include <unordered_map>
#include <vector>
namespace boost::filesystem
{
class path;
}
#include <filesystem>
struct AC_DATABASE_API UpdateResult
{
@@ -33,7 +29,7 @@ struct AC_DATABASE_API UpdateResult
class AC_DATABASE_API UpdateFetcher
{
typedef boost::filesystem::path Path;
typedef std::filesystem::path Path;
public:
UpdateFetcher(Path const& updateDirectory,