Core/DBUpdater: Fixed compile errors with boost 1.55 and VS 2013

This commit is contained in:
Shauren
2015-03-22 00:14:54 +01:00
parent 6a2e073d9f
commit 495af75b7e

View File

@@ -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>;