| 15202 | |
| 15203 | namespace Catch { |
| 15204 | StringRef::StringRef(char const* rawChars) noexcept |
| 15205 | : StringRef(rawChars, static_cast<StringRef::size_type>(std::strlen(rawChars))) |
| 15206 | { |
| 15207 | } |
| 15208 | |
| 15209 | StringRef::operator std::string() const |
| 15210 | { |
nothing calls this directly
no outgoing calls
no test coverage detected