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

@@ -4,7 +4,6 @@
*/
#include "UpdateFetcher.h"
#include "Common.h"
#include "CryptoHash.h"
#include "DBUpdater.h"
#include "Field.h"
@@ -12,11 +11,10 @@
#include "QueryResult.h"
#include "Tokenize.h"
#include "Util.h"
#include <boost/filesystem/operations.hpp>
#include <fstream>
#include <sstream>
#include <fstream>
using namespace boost::filesystem;
using namespace std::filesystem;
struct UpdateFetcher::DirectoryEntry
{