diff --git a/public/tier1/utlleanvector.h b/public/tier1/utlleanvector.h index b0124253..b956edc2 100644 --- a/public/tier1/utlleanvector.h +++ b/public/tier1/utlleanvector.h @@ -869,7 +869,7 @@ void CUtlLeanVectorImpl::ShiftElements( T* pDest, const T* pSrc, const { ptrdiff_t numToMove = pSrcEnd - pSrc; if ( numToMove > 0 ) - memmove( pDest, pSrc, numToMove * sizeof( T ) ); + V_memmove( pDest, pSrc, numToMove * sizeof( T ) ); } //-----------------------------------------------------------------------------