///////////////////////////////////////////////////////////////////// ! Ensure that the array has at least size capacity. */ /////////////////////////////////////////////////////////////////////
| 474 | */ |
| 475 | ////////////////////////////////////////////////////////////////////////// |
| 476 | PX_INLINE void reserve(const uint32_t capacity) |
| 477 | { |
| 478 | if(capacity > this->capacity()) |
| 479 | grow(capacity); |
| 480 | } |
| 481 | |
| 482 | ////////////////////////////////////////////////////////////////////////// |
| 483 | /*! |