| 7869 | } |
| 7870 | |
| 7871 | StartsWithMatcher::StartsWithMatcher(CasedString const &comparator) : StringMatcherBase("starts with", comparator) { |
| 7872 | } |
| 7873 | |
| 7874 | bool StartsWithMatcher::match(std::string const &source) const { |
| 7875 | return startsWith(m_comparator.adjustString(source), m_comparator.m_str); |
nothing calls this directly
no outgoing calls
no test coverage detected