aboutsummaryrefslogtreecommitdiff
path: root/src/std/hash_map.c
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2019-03-09 00:43:13 +0100
committerdec05eba <dec05eba@protonmail.com>2020-07-25 14:36:46 +0200
commit9428fceb0cacf5ff9e19116de658bcffb98efc6f (patch)
treeb281b6e047195c4f9c49de98919c8b99171dccec /src/std/hash_map.c
parent18fb99add7f0d4b710debcbf5c154f9c1d841845 (diff)
Add check for duplicate variable names
Diffstat (limited to 'src/std/hash_map.c')
-rw-r--r--src/std/hash_map.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/std/hash_map.c b/src/std/hash_map.c
index 9f58f6f..a649a95 100644
--- a/src/std/hash_map.c
+++ b/src/std/hash_map.c
@@ -7,7 +7,7 @@
Basic hash map implementation. TODO: Improve performance
*/
-#define HASH_MAP_INITIAL_SIZE 16
+#define HASH_MAP_INITIAL_SIZE 8
typedef struct HashMapBucketNode HashMapBucketNode;