| 11187 | |
| 11188 | namespace Catch { |
| 11189 | StringRef::StringRef( char const* rawChars ) noexcept |
| 11190 | : StringRef( rawChars, static_cast<StringRef::size_type>(std::strlen(rawChars) ) ) |
| 11191 | {} |
| 11192 | |
| 11193 | StringRef::operator std::string() const { |
| 11194 | return std::string( m_start, m_size ); |
nothing calls this directly
no outgoing calls
no test coverage detected