| 3074 | |
| 3075 | template<typename T> |
| 3076 | Vector::ContainsMatcher<T> Contains( std::vector<T> const& comparator ) { |
| 3077 | return Vector::ContainsMatcher<T>( comparator ); |
| 3078 | } |
| 3079 | |
| 3080 | template<typename T> |
| 3081 | Vector::ContainsElementMatcher<T> VectorContains( T const& comparator ) { |
nothing calls this directly
no test coverage detected