| 749 | //----------------------------------------------------------------------------- |
| 750 | |
| 751 | template<class T> inline bool Vector<T>::resize(U32 ecount) |
| 752 | { |
| 753 | #ifdef TORQUE_DEBUG_GUARD |
| 754 | return VectorResize(&mArraySize, &mElementCount, (void**) &mArray, ecount, sizeof(T), |
| 755 | mFileAssociation, mLineAssociation); |
| 756 | #else |
| 757 | return VectorResize(&mArraySize, &mElementCount, (void**) &mArray, ecount, sizeof(T)); |
| 758 | #endif |
| 759 | } |
| 760 | |
| 761 | template<class T> inline void Vector<T>::merge( const Vector &p ) |
| 762 | { |
nothing calls this directly
no test coverage detected