mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-29 09:24:33 +00:00
Remove map.cpp code
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user