| 71 | void Pop(size_t count) { stack_.template Pop<Ch>(count); } |
| 72 | |
| 73 | const Ch* GetString() const { |
| 74 | // Push and pop a null terminator. This is safe. |
| 75 | *stack_.template Push<Ch>() = '\0'; |
| 76 | stack_.template Pop<Ch>(1); |
| 77 | |
| 78 | return stack_.template Bottom<Ch>(); |
| 79 | } |
| 80 | |
| 81 | size_t GetSize() const { return stack_.GetSize(); } |
| 82 |
nothing calls this directly
no outgoing calls
no test coverage detected