| 53 | [[nodiscard]] bool ensureCapacity(size_t size, std::nothrow_t) noexcept; |
| 54 | |
| 55 | inline void ensureCapacity(size_t size) { |
| 56 | if (size != 0 && !ensureCapacity(size, std::nothrow)) { |
| 57 | throw std::bad_alloc(); |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | [[nodiscard]] std::vector<uint8_t> toVector() const; |
| 62 |
nothing calls this directly
no outgoing calls
no test coverage detected