| 13672 | |
| 13673 | namespace Catch { |
| 13674 | StringRef::StringRef( char const* rawChars ) noexcept |
| 13675 | : StringRef( rawChars, static_cast<StringRef::size_type>(std::strlen(rawChars) ) ) |
| 13676 | {} |
| 13677 | |
| 13678 | auto StringRef::c_str() const -> char const* { |
| 13679 | CATCH_ENFORCE(isNullTerminated(), "Called StringRef::c_str() on a non-null-terminated instance"); |
nothing calls this directly
no outgoing calls
no test coverage detected