1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-01 02:07:57 +00:00

Merge pull request #129 from Quuxplusone/unordered-map

Remove USE_UNORDERED_MAP because it has bit-rotted.
This commit is contained in:
Zeno Rogue
2020-11-05 20:03:13 +01:00
committed by GitHub
18 changed files with 26 additions and 38 deletions

View File

@@ -491,14 +491,6 @@ typedef unsigned GLuint;
#endif
#endif
#ifdef USE_UNORDERED_MAP
#include <unordered_map>
#include <unordered_set>
#else
#define unordered_map map
#define unordered_set set
#endif
#include <stdint.h>
#if ISWINDOWS