From 495af75b7e21a2a84231b0540a6f2b9ed349ea58 Mon Sep 17 00:00:00 2001 From: Shauren Date: Sun, 22 Mar 2015 00:14:54 +0100 Subject: [PATCH] Core/DBUpdater: Fixed compile errors with boost 1.55 and VS 2013 --- src/server/shared/Updater/UpdateFetcher.h | 3 +-- 1 file changed, 1 insertion(+), 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 #include #include -#include class UpdateFetcher { @@ -95,7 +94,7 @@ private: } }; - using LocaleFileStorage = boost::container::flat_set; + using LocaleFileStorage = std::set; using HashToFileNameStorage = std::unordered_map; using AppliedFileStorage = std::unordered_map; using DirectoryStorage = std::vector;