mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/DBUpdater: Fixed compile errors with boost 1.55 and VS 2013
This commit is contained in:
@@ -24,7 +24,6 @@
|
||||
#include <string>
|
||||
#include <memory>
|
||||
#include <vector>
|
||||
#include <boost/container/flat_set.hpp>
|
||||
|
||||
class UpdateFetcher
|
||||
{
|
||||
@@ -95,7 +94,7 @@ private:
|
||||
}
|
||||
};
|
||||
|
||||
using LocaleFileStorage = boost::container::flat_set<LocaleFileEntry, PathCompare>;
|
||||
using LocaleFileStorage = std::set<LocaleFileEntry, PathCompare>;
|
||||
using HashToFileNameStorage = std::unordered_map<std::string, std::string>;
|
||||
using AppliedFileStorage = std::unordered_map<std::string, AppliedFileEntry>;
|
||||
using DirectoryStorage = std::vector<UpdateFetcher::DirectoryEntry>;
|
||||
|
||||
Reference in New Issue
Block a user