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

@@ -9,6 +9,7 @@
#include "DatabaseEnv.h"
#include "Define.h"
#include <string>
#include <filesystem>
template <class T>
class DatabaseWorkerPool;
@@ -54,7 +55,7 @@ template <class T>
class AC_DATABASE_API DBUpdater
{
public:
using Path = boost::filesystem::path;
using Path = std::filesystem::path;
static inline std::string GetConfigEntry();
static inline std::string GetTableName();