mirror of
https://github.com/minetest/minetest.git
synced 2024-11-09 01:03:46 +01:00
Ensure std::unordered_ will be used on supported MSVC compilers
This commit is contained in:
parent
ad163ee5c3
commit
3de9ae4e60
@ -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 <unordered_map>
|
||||
#include <unordered_set>
|
||||
#define UNORDERED_MAP std::unordered_map
|
||||
|
Loading…
Reference in New Issue
Block a user