| 13911 | |
| 13912 | namespace Catch { |
| 13913 | StringRef::StringRef( char const* rawChars ) noexcept |
| 13914 | : StringRef( rawChars, static_cast<StringRef::size_type>(std::strlen(rawChars) ) ) |
| 13915 | {} |
| 13916 | |
| 13917 | auto StringRef::c_str() const -> char const* { |
| 13918 | CATCH_ENFORCE(isNullTerminated(), "Called StringRef::c_str() on a non-null-terminated instance"); |
nothing calls this directly
no outgoing calls
no test coverage detected