| 395 | } |
| 396 | |
| 397 | T pop() |
| 398 | { |
| 399 | fb_assert(count > 0); |
| 400 | count--; |
| 401 | return data[count]; |
| 402 | } |
| 403 | |
| 404 | // prepare array to be used as a buffer of capacity items |
| 405 | T* getBuffer(const size_type capacityL, bool preserve = true) |
no outgoing calls
no test coverage detected