| 40 | GenericMemoryBuffer(Allocator* allocator = 0, size_t capacity = kDefaultCapacity) : stack_(allocator, capacity) {} |
| 41 | |
| 42 | void Put(Ch c) { *stack_.template Push<Ch>() = c; } |
| 43 | void Flush() {} |
| 44 | |
| 45 | void Clear() { stack_.Clear(); } |
nothing calls this directly
no outgoing calls
no test coverage detected