(trunk libT) make tr_ptrArrayErase() private

This commit is contained in:
Charles Kerr 2009-09-07 21:57:15 +00:00
parent 9be4a3979b
commit 600e2d26ec
2 changed files with 1 additions and 5 deletions

View File

@ -110,7 +110,7 @@ tr_ptrArrayPop( tr_ptrArray* t )
return ret;
}
void
static void
tr_ptrArrayErase( tr_ptrArray * t,
int begin,
int end )

View File

@ -65,10 +65,6 @@ static TR_INLINE int tr_ptrArrayAppend( tr_ptrArray * array, void * appendMe )
void* tr_ptrArrayPop( tr_ptrArray * array );
void tr_ptrArrayErase( tr_ptrArray * array,
int begin,
int end );
static TR_INLINE void** tr_ptrArrayBase( const tr_ptrArray * a )
{
return a->items;