1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-28 03:29:39 +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:
uz 2011-08-14 19:21:44 +00:00
parent 27964254dc
commit e67c802193

View File

@ -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);