mirror of
https://github.com/cc65/cc65.git
synced 2024-12-25 17:29:50 +00:00
Make the parameter for HT_GetKey const.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5161 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
27964254dc
commit
e67c802193
@ -70,7 +70,7 @@ struct HashFunctions {
|
||||
unsigned (*GenHash) (const void* Key);
|
||||
/* Generate the hash over a key. */
|
||||
|
||||
const void* (*GetKey) (void* Entry);
|
||||
const void* (*GetKey) (const void* Entry);
|
||||
/* Given a pointer to the user entry data, return a pointer to the key */
|
||||
|
||||
int (*Compare) (const void* Key1, const void* Key2);
|
||||
|
Loading…
Reference in New Issue
Block a user