- This fixes the build problem in the database code revolving around the UNORDERED_MAP type

This commit is contained in:
bels 2014-06-11 19:54:10 -04:00 committed by Antz
parent a2910cb682
commit 23d7b418dc

View file

@ -91,8 +91,8 @@ HASH_NAMESPACE_END
using std::hash_map;
using std::hash_set;
#elif COMPILER == COMPILER_CLANG
# define UNORDERED_MAP std::tr1::unordered_map
# define UNORDERED_SET std::tr1::unordered_set
# define UNORDERED_MAP std::unordered_map
# define UNORDERED_SET std::unordered_set
# define HASH_NAMESPACE_START namespace std { namespace tr1 {
# define HASH_NAMESPACE_END } }
#elif COMPILER == COMPILER_GNU && (__GNUC__ > 4 || __GNUC__ == 4 && __GNUC_MINOR__ >= 3)