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