diff options
Diffstat (limited to 'src/server/game/Phasing/PhaseShift.h')
-rw-r--r-- | src/server/game/Phasing/PhaseShift.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Phasing/PhaseShift.h b/src/server/game/Phasing/PhaseShift.h index 7d483ce12a9..89f5ad98896 100644 --- a/src/server/game/Phasing/PhaseShift.h +++ b/src/server/game/Phasing/PhaseShift.h @@ -20,8 +20,8 @@ #include "Define.h" #include "EnumFlag.h" +#include "FlatSet.h" #include "ObjectGuid.h" -#include <boost/container/flat_set.hpp> #include <map> class PhasingHandler; @@ -82,7 +82,7 @@ public: typename Container::iterator Iterator; bool Erased; }; - using PhaseContainer = boost::container::flat_set<PhaseRef>; + using PhaseContainer = Trinity::Containers::FlatSet<PhaseRef>; using VisibleMapIdContainer = std::map<uint32, VisibleMapIdRef>; using UiMapPhaseIdContainer = std::map<uint32, UiMapPhaseIdRef>; |