| 46 | GenericMemoryBuffer(Allocator* allocator = 0, size_t capacity = kDefaultCapacity) : stack_(allocator, capacity) {} |
| 47 | |
| 48 | void Put(Ch c) { *stack_.template Push<Ch>() = c; } |
| 49 | void Flush() {} |
| 50 | |
| 51 | void Clear() { stack_.Clear(); } |
nothing calls this directly
no outgoing calls
no test coverage detected