diff --git a/src/util/cpp11_container.h b/src/util/cpp11_container.h index f839be19a..7ac2fc371 100644 --- a/src/util/cpp11_container.h +++ b/src/util/cpp11_container.h @@ -21,6 +21,14 @@ with this program; if not, write to the Free Software Foundation, Inc., #define MT_CPP11CONTAINER_HEADER #if __cplusplus >= 201103L +#define USE_UNORDERED_CONTAINERS +#endif + +#if _MSC_VER >= 1800 +#define USE_UNORDERED_CONTAINERS +#endif + +#ifdef USE_UNORDERED_CONTAINERS #include #include #define UNORDERED_MAP std::unordered_map