| 4659 | |
| 4660 | template<typename T, typename allocatorT> |
| 4661 | static void VmaVectorInsert(VmaVector<T, allocatorT>& vec, size_t index, const T& item) |
| 4662 | { |
| 4663 | vec.insert(index, item); |
| 4664 | } |
| 4665 | |
| 4666 | template<typename T, typename allocatorT> |
| 4667 | static void VmaVectorRemove(VmaVector<T, allocatorT>& vec, size_t index) |
no test coverage detected