Remove an unused function

This commit is contained in:
Chris Robinson
2018-01-27 15:06:20 -08:00
parent 277127829a
commit 4d1795e90b
2 changed files with 0 additions and 6 deletions
-5
View File
@@ -36,11 +36,6 @@ void ResetUIntMap(UIntMap *map)
WriteUnlock(&map->lock);
}
void RelimitUIntMapNoLock(UIntMap *map, ALsizei limit)
{
map->limit = limit;
}
ALenum InsertUIntMapEntry(UIntMap *map, ALuint key, ALvoid *value)
{
ALsizei pos = 0;
-1
View File
@@ -25,7 +25,6 @@ typedef struct UIntMap {
void InitUIntMap(UIntMap *map, ALsizei limit);
void ResetUIntMap(UIntMap *map);
void RelimitUIntMapNoLock(UIntMap *map, ALsizei limit);
ALenum InsertUIntMapEntry(UIntMap *map, ALuint key, ALvoid *value);
ALenum InsertUIntMapEntryNoLock(UIntMap *map, ALuint key, ALvoid *value);
ALvoid *RemoveUIntMapKey(UIntMap *map, ALuint key);