| 3747 | |
| 3748 | template<typename T, typename AllocComp = std::allocator<T>, typename AllocMatch = AllocComp> |
| 3749 | Vector::EqualsMatcher<T, AllocComp, AllocMatch> Equals( std::vector<T, AllocComp> const& comparator ) { |
| 3750 | return Vector::EqualsMatcher<T, AllocComp, AllocMatch>( comparator ); |
| 3751 | } |
| 3752 | |
| 3753 | template<typename T, typename AllocComp = std::allocator<T>, typename AllocMatch = AllocComp> |
| 3754 | Vector::ApproxMatcher<T, AllocComp, AllocMatch> Approx( std::vector<T, AllocComp> const& comparator ) { |
no test coverage detected