1
1
mirror of https://github.com/theoludwig/libcproject.git synced 2025-05-21 23:21:15 +02:00

feat: add hash_map_free

This commit is contained in:
2023-08-03 23:17:54 +02:00
parent 8b6f06dc6e
commit a0a1310f53
5 changed files with 18 additions and 0 deletions

View File

@ -285,6 +285,7 @@ bool string_get_has_unique_characters(const string_t string_value) {
hash_map_add(characters_already_seen, key, (void*)true);
}
}
hash_map_free(characters_already_seen);
return has_unique;
}