Return the size of this string. */
| 16 | |
| 17 | /** Return the size of this string. */ |
| 18 | size_t size() const { return strlen(m_p); } |
| 19 | |
| 20 | /** Return a null-terminated sequence of characters. */ |
| 21 | const char* c_str() const { return m_p; } |
no outgoing calls
no test coverage detected