Remove an unused function
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user