| 56 | void Put(Ch c) { *stack_.template Push<Ch>() = c; } |
| 57 | void PutUnsafe(Ch c) { *stack_.template PushUnsafe<Ch>() = c; } |
| 58 | void Flush() {} |
| 59 | |
| 60 | void Clear() { stack_.Clear(); } |
| 61 | void ShrinkToFit() { |
nothing calls this directly
no outgoing calls
no test coverage detected