///////////////////////////////////////////////////////////////////// ! Ensure that the array has at least size capacity. */ /////////////////////////////////////////////////////////////////////
| 478 | */ |
| 479 | ////////////////////////////////////////////////////////////////////////// |
| 480 | PX_INLINE void reserve(const uint32_t capacity) |
| 481 | { |
| 482 | if(capacity > this->capacity()) |
| 483 | grow(capacity); |
| 484 | } |
| 485 | |
| 486 | ////////////////////////////////////////////////////////////////////////// |
| 487 | /*! |
no test coverage detected