summaryrefslogtreecommitdiff
path: root/src/face_position_cache.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/face_position_cache.h')
-rw-r--r--src/face_position_cache.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/face_position_cache.h b/src/face_position_cache.h
index c1d2841c4..5ea0d938b 100644
--- a/src/face_position_cache.h
+++ b/src/face_position_cache.h
@@ -22,10 +22,10 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "irr_v3d.h"
#include "threading/mutex.h"
-#include "util/cpp11_container.h"
#include <map>
#include <vector>
+#include <unordered_map>
/*
* This class permits caching getFacePosition call results.
@@ -37,7 +37,7 @@ public:
private:
static const std::vector<v3s16> &generateFacePosition(u16 d);
- static UNORDERED_MAP<u16, std::vector<v3s16> > cache;
+ static std::unordered_map<u16, std::vector<v3s16>> cache;
static Mutex cache_mutex;
};