MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / resize

Method resize

Engine/source/core/util/tVector.h:751–759  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

749//-----------------------------------------------------------------------------
750
751template<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
761template<class T> inline void Vector<T>::merge( const Vector &p )
762{

Callers

nothing calls this directly

Calls 1

VectorResizeFunction · 0.85

Tested by

no test coverage detected