mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-03-04 08:17:48 +00:00
refactor(Core): replace boost::filesystem with std::filesystem (#6800)
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user