| 2463 | template <typename T> struct EqualsMatcher : MatcherBase<std::vector<T>> { |
| 2464 | |
| 2465 | EqualsMatcher(std::vector<T> const &comparator) : m_comparator(comparator) { |
| 2466 | } |
| 2467 | |
| 2468 | bool match(std::vector<T> const &v) const override { |
| 2469 | // !TBD: This currently works if all elements can be compared using != |
nothing calls this directly
no outgoing calls
no test coverage detected