| 283 | void operator=(Text&& t) = delete; |
| 284 | |
| 285 | const char* c_str() const { return _str; } |
| 286 | bool empty() const { return _str == nullptr || *_str == '\0'; } |
| 287 | |
| 288 | char* release() |
nothing calls this directly
no outgoing calls
no test coverage detected