| 9507 | |
| 9508 | namespace Catch { |
| 9509 | StringRef::StringRef( char const* rawChars ) noexcept |
| 9510 | : StringRef( rawChars, static_cast<StringRef::size_type>(std::strlen(rawChars) ) ) |
| 9511 | {} |
| 9512 | |
| 9513 | StringRef::operator std::string() const { |
| 9514 | return std::string( m_start, m_size ); |
nothing calls this directly
no outgoing calls
no test coverage detected