| 9651 | |
| 9652 | namespace Catch { |
| 9653 | StringRef::StringRef( char const* rawChars ) noexcept |
| 9654 | : StringRef( rawChars, static_cast<StringRef::size_type>(std::strlen(rawChars) ) ) |
| 9655 | {} |
| 9656 | |
| 9657 | StringRef::operator std::string() const { |
| 9658 | return std::string( m_start, m_size ); |
nothing calls this directly
no outgoing calls
no test coverage detected