diff options
author | Shauren <shauren.trinity@gmail.com> | 2015-03-22 00:14:54 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2015-03-22 00:14:54 +0100 |
commit | 495af75b7e21a2a84231b0540a6f2b9ed349ea58 (patch) | |
tree | 83271db6d42283b878380e10c895e744b64c1caf /src | |
parent | 6a2e073d9f94e3cc8d818a7bf99312cf6973feb1 (diff) |
Core/DBUpdater: Fixed compile errors with boost 1.55 and VS 2013
Diffstat (limited to 'src')
-rw-r--r-- | src/server/shared/Updater/UpdateFetcher.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/server/shared/Updater/UpdateFetcher.h b/src/server/shared/Updater/UpdateFetcher.h index b348eecf4e1..c11cfbf7c82 100644 --- a/src/server/shared/Updater/UpdateFetcher.h +++ b/src/server/shared/Updater/UpdateFetcher.h @@ -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>; |