diff options
author | Karsten Blees <karsten.blees@gmail.com> | 2013-12-18 14:41:27 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-02-24 15:26:30 -0800 |
commit | b6aad994737458177ddf68939719f90e7909f656 (patch) | |
tree | 89bdfde589c3659687f88516ccab97f74b55cfc0 /Documentation/technical/api-hashmap.txt | |
parent | test-hashmap.c: drop unnecessary #includes (diff) | |
download | tgif-b6aad994737458177ddf68939719f90e7909f656.tar.xz |
hashmap.h: use 'unsigned int' for hash-codes everywhere
Signed-off-by: Karsten Blees <blees@dcon.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/technical/api-hashmap.txt')
-rw-r--r-- | Documentation/technical/api-hashmap.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/technical/api-hashmap.txt b/Documentation/technical/api-hashmap.txt index b2280f1b0d..42ca2347ed 100644 --- a/Documentation/technical/api-hashmap.txt +++ b/Documentation/technical/api-hashmap.txt @@ -80,7 +80,7 @@ prevent expensive resizing. If 0, the table is dynamically resized. If `free_entries` is true, each hashmap_entry in the map is freed as well (using stdlib's free()). -`void hashmap_entry_init(void *entry, int hash)`:: +`void hashmap_entry_init(void *entry, unsigned int hash)`:: Initializes a hashmap_entry structure. + |