Remove map.cpp code

This commit is contained in:
gingerBill
2021-11-05 17:16:37 +00:00
parent 86e26c9a44
commit 0af69f8cda
3 changed files with 9 additions and 370 deletions

View File

@@ -1,5 +1,14 @@
#define PTR_MAP_ENABLE_MULTI_MAP 1
typedef u32 MapIndex;
struct MapFindResult {
MapIndex hash_index;
MapIndex entry_prev;
MapIndex entry_index;
};
enum : MapIndex { MAP_SENTINEL = ~(MapIndex)0 };
template <typename K, typename V>
struct PtrMapEntry {