Removed LLDynamicArray, LLDynamicArrayIndexed, LLDynamicArrayPtr, LLDLinked, LLDynamicQueuePtr, LLEnum, and LLIndexedQueue. Added new LLPointer variants.
This commit is contained in:
@@ -1120,15 +1120,15 @@ struct LLEntryAndEdCore
|
||||
|
||||
void LLScriptEdCore::deleteBridges()
|
||||
{
|
||||
S32 count = mBridges.count();
|
||||
S32 count = mBridges.size();
|
||||
LLEntryAndEdCore* eandc;
|
||||
for(S32 i = 0; i < count; i++)
|
||||
{
|
||||
eandc = mBridges.get(i);
|
||||
eandc = mBridges.at(i);
|
||||
delete eandc;
|
||||
mBridges[i] = NULL;
|
||||
}
|
||||
mBridges.reset();
|
||||
mBridges.clear();
|
||||
}
|
||||
|
||||
// virtual
|
||||
|
||||
Reference in New Issue
Block a user