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