| 666 | |
| 667 | template <class T, class Alloc> |
| 668 | PX_NOINLINE void Array<T, Alloc>::resizeUninitialized(const uint32_t size) |
| 669 | { |
| 670 | reserve(size); |
| 671 | mSize = size; |
| 672 | } |
| 673 | |
| 674 | template <class T, class Alloc> |
| 675 | PX_NOINLINE T& Array<T, Alloc>::growAndPushBack(const T& a) |
no outgoing calls
no test coverage detected