Refactor windows and web compiling

This commit is contained in:
Krzosa Karol
2025-11-27 22:45:10 +01:00
parent 781c2dc53c
commit e9e8751981
24 changed files with 104 additions and 555 deletions
+1 -2
View File
@@ -1,4 +1,3 @@
/*
Hash table implementation:
Pointers to values
@@ -11,7 +10,7 @@
Hash 0 is reserved for empty hash table entry
*/
template <class Value>
struct Table {
struct HashTable {
struct Entry {
uint64_t hash;
uint64_t key;