diff options
author | dec05eba <dec05eba@protonmail.com> | 2019-03-09 00:43:13 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-07-25 14:36:46 +0200 |
commit | 9428fceb0cacf5ff9e19116de658bcffb98efc6f (patch) | |
tree | b281b6e047195c4f9c49de98919c8b99171dccec /src/std | |
parent | 18fb99add7f0d4b710debcbf5c154f9c1d841845 (diff) |
Add check for duplicate variable names
Diffstat (limited to 'src/std')
-rw-r--r-- | src/std/hash_map.c | 2 |
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; |