| 730 | } |
| 731 | |
| 732 | void push_back(const T& val) |
| 733 | { |
| 734 | if (this->mSize >= this->mAllocSize) |
| 735 | SetBufferSize(this->mAllocSize + this->mAllocSize / 2 + 1); |
| 736 | new (&this->mVals[this->mSize++]) T(val); |
| 737 | } |
| 738 | |
| 739 | void pop_back() |
| 740 | { |
no outgoing calls