| 55 | void append(const char* s, std::size_t size) { str.append(s, size); } // required |
| 56 | |
| 57 | std::size_t size() const { return str.size(); } |
| 58 | int compare(const char* s) const { return str.compare(s); } |
| 59 | |
| 60 | private: |
no outgoing calls
no test coverage detected