| 8077 | } |
| 8078 | |
| 8079 | StartsWithMatcher::StartsWithMatcher( CasedString const& comparator ) : StringMatcherBase( "starts with", comparator ) {} |
| 8080 | |
| 8081 | bool StartsWithMatcher::match( std::string const& source ) const { |
| 8082 | return startsWith( m_comparator.adjustString( source ), m_comparator.m_str ); |
nothing calls this directly
no outgoing calls
no test coverage detected