From 9cb9964c2de6589ac7f06e90f017d3fbbc1dfe69 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Thu, 8 Dec 2022 00:52:11 +0000 Subject: [PATCH] Remove old code --- core/mem/raw.odin | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/core/mem/raw.odin b/core/mem/raw.odin index 144b6c8ab..9a521598e 100644 --- a/core/mem/raw.odin +++ b/core/mem/raw.odin @@ -23,16 +23,3 @@ make_any :: proc "contextless" (data: rawptr, id: typeid) -> any { } raw_data :: builtin.raw_data - - -Poly_Raw_Map_Entry :: struct($Key, $Value: typeid) { - hash: uintptr, - next: int, - key: Key, - value: Value, -} - -Poly_Raw_Map :: struct($Key, $Value: typeid) { - hashes: []int, - entries: [dynamic]Poly_Raw_Map_Entry(Key, Value), -} \ No newline at end of file