| 203 | { |
| 204 | String::GrowableImplementation gi; |
| 205 | GrowableBuffer(String& string) |
| 206 | : IGrowableBuffer(&GrowableBuffer::tryGrowTo), gi(string, IGrowableBuffer::directAccess) |
| 207 | {} |
| 208 | static bool tryGrowTo(IGrowableBuffer& gb, size_t newSize) noexcept |
| 209 | { |
| 210 | return static_cast<GrowableBuffer&>(gb).gi.tryGrowTo(newSize); |
nothing calls this directly
no outgoing calls
no test coverage detected