| 13898 | |
| 13899 | namespace Catch { |
| 13900 | StringRef::StringRef( char const* rawChars ) noexcept |
| 13901 | : StringRef( rawChars, static_cast<StringRef::size_type>(std::strlen(rawChars) ) ) |
| 13902 | {} |
| 13903 | |
| 13904 | auto StringRef::c_str() const -> char const* { |
| 13905 | CATCH_ENFORCE(isNullTerminated(), "Called StringRef::c_str() on a non-null-terminated instance"); |
nothing calls this directly
no outgoing calls
no test coverage detected