1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-16 02:09:59 +00:00

added <unordered_set>

This commit is contained in:
Zeno Rogue 2019-12-06 14:03:12 +01:00
parent 8386a14d6a
commit 1539d85a45

View File

@ -423,8 +423,10 @@ extern "C" {
#ifdef USE_UNORDERED_MAP #ifdef USE_UNORDERED_MAP
#include <unordered_map> #include <unordered_map>
#include <unordered_set>
#else #else
#define unordered_map map #define unordered_map map
#define unordered_set set
#endif #endif
#include <stdint.h> #include <stdint.h>