aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2015-03-22 00:14:54 +0100
committerShauren <shauren.trinity@gmail.com>2015-03-22 00:14:54 +0100
commit495af75b7e21a2a84231b0540a6f2b9ed349ea58 (patch)
tree83271db6d42283b878380e10c895e744b64c1caf /src
parent6a2e073d9f94e3cc8d818a7bf99312cf6973feb1 (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.h3
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>;