Fixed problem with inserting at nIndex=0 in Growable array

This commit is contained in:
cmanske 1998-04-17 21:49:18 +00:00
Родитель 8160e2244d
Коммит eb16a89c0b
1 изменённых файлов: 12 добавлений и 3 удалений

Просмотреть файл

@ -99,14 +99,23 @@ public:
}
int Insert(void* newElement, int nIndex){
intn iLowerLimit;
GuaranteeSize(m_iSize+1);
if( nIndex < 0 )
nIndex = 0;
if( nIndex < m_iSize )
{
if( m_iSize > 0 )
{
iLowerLimit = max(1, nIndex);
/* Shuffle pointers at and above insert index up */
for( int i = m_iSize; i > nIndex; i-- )
for( int i = m_iSize; i >= iLowerLimit; i-- )
{
m_pData[i] = m_pData[i-1];
}
}
/* Overwrite pointer at designated location */
m_pData[nIndex] = newElement;
} else {