diff options
author | Shauren <shauren.trinity@gmail.com> | 2015-03-22 00:14:54 +0100 |
---|---|---|
committer | Naios <naios-dev@live.de> | 2015-03-22 00:35:05 +0100 |
commit | 8bdd94f8495f8b8d84942357b0d6453a1b859eca (patch) | |
tree | 771147b3377f5729f9cdd5761c287f80f8471a46 /src | |
parent | 93457ac9d8c38cfbde5f5b9f99e9d8ca242cab97 (diff) |
Core/DBUpdater: Fixed compile errors with boost 1.55 and VS 2013
(cherry picked from commit 495af75b7e21a2a84231b0540a6f2b9ed349ea58)
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>; |