| 37 | smallVectorBase(uint32_t cap) noexcept :_isBig(false), _size(0), _capacity(cap) { } |
| 38 | |
| 39 | ~smallVectorBase() { |
| 40 | if (_isBig) |
| 41 | ::free(_dataPointer); |
| 42 | } |
| 43 | |
| 44 | |
| 45 | // Throws if size/capacity is too big, and returns cast to uint32_t |
nothing calls this directly
no outgoing calls
no test coverage detected