aboutsummaryrefslogtreecommitdiff
path: root/src/HashTable.h
diff options
context:
space:
mode:
authorDylan <boss@tehbox.org>2026-05-24 22:59:09 +1200
committerDylan <boss@tehbox.org>2026-05-24 22:59:09 +1200
commit7711536253315ba3b3628b8c6706573317c7e201 (patch)
treef4a78af0d0ffd8cbde88a96361bce4a92b1cefcd /src/HashTable.h
parent85cd1ecf29c3a295536ccc3782c2415d7518aef0 (diff)
downloadtehimage-0.0.3.tar.gz
tehimage-0.0.3.zip
feat: Cleanupsv0.0.3PNG-writing
Cleaning up code so its ready for release
Diffstat (limited to 'src/HashTable.h')
-rw-r--r--src/HashTable.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/HashTable.h b/src/HashTable.h
index 1ede7be..b1bf88a 100644
--- a/src/HashTable.h
+++ b/src/HashTable.h
@@ -18,7 +18,7 @@ namespace TehImage
HashTable(size_t size);
unsigned int hashFunction(char key[3]);
- void insert(char key[3], unsigned int value);
+ void insertOrUpdate(char key[3], unsigned int value);
void remove(char key[3]);
unsigned int get(char key[3]);
bool contains(char key[3]);