mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-29 09:29:10 +00:00
(svn r3297) Staticise
This commit is contained in:
4
queue.c
4
queue.c
@@ -504,7 +504,8 @@ void delete_Hash(Hash* h, bool free_values) {
|
||||
free(h);
|
||||
}
|
||||
|
||||
void stat_Hash(Hash* h)
|
||||
#ifdef HASH_STATS
|
||||
static void stat_Hash(Hash* h)
|
||||
{
|
||||
uint used_buckets = 0;
|
||||
uint max_collision = 0;
|
||||
@@ -546,6 +547,7 @@ void stat_Hash(Hash* h)
|
||||
}
|
||||
printf ("}\n");
|
||||
}
|
||||
#endif
|
||||
|
||||
void clear_Hash(Hash* h, bool free_values)
|
||||
{
|
||||
|
Reference in New Issue
Block a user