| 9575 | |
| 9576 | namespace Catch { |
| 9577 | StringRef::StringRef(char const *rawChars) noexcept |
| 9578 | : StringRef(rawChars, static_cast<StringRef::size_type>(std::strlen(rawChars))) { |
| 9579 | } |
| 9580 | |
| 9581 | StringRef::operator std::string() const { |
| 9582 | return std::string(m_start, m_size); |
nothing calls this directly
no outgoing calls
no test coverage detected