From 9db50e4772795de3d51dca76c9726a2bf7fd2e09 Mon Sep 17 00:00:00 2001 From: Rochet2 Date: Sun, 14 Sep 2014 11:10:39 +0300 Subject: [PATCH] Fix < c++11 compatibility for mangos --- ElunaUtility.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ElunaUtility.h b/ElunaUtility.h index 370c058..726ae6e 100644 --- a/ElunaUtility.h +++ b/ElunaUtility.h @@ -58,9 +58,11 @@ typedef QueryNamedResult ElunaQuery; #endif #ifndef UNORDERED_MAP +#include #define UNORDERED_MAP std::unordered_map #endif #ifndef UNORDERED_SET +#include #define UNORDERED_SET std::unordered_set #endif