| 4660 | |
| 4661 | template<typename T, typename AllocatorT, size_t N> |
| 4662 | void VmaSmallVector<T, AllocatorT, N>::clear(bool freeMemory) |
| 4663 | { |
| 4664 | m_DynamicArray.clear(); |
| 4665 | if (freeMemory) |
| 4666 | { |
| 4667 | m_DynamicArray.shrink_to_fit(); |
| 4668 | } |
| 4669 | m_Count = 0; |
| 4670 | } |
| 4671 | |
| 4672 | template<typename T, typename AllocatorT, size_t N> |
| 4673 | void VmaSmallVector<T, AllocatorT, N>::insert(size_t index, const T& src) |
no test coverage detected