| 54 | void Pop(size_t count) { stack_.template Pop<Ch>(count); } |
| 55 | |
| 56 | const Ch* GetBuffer() const { |
| 57 | return stack_.template Bottom<Ch>(); |
| 58 | } |
| 59 | |
| 60 | size_t GetSize() const { return stack_.GetSize(); } |
| 61 |
nothing calls this directly
no outgoing calls
no test coverage detected