mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 13:26:10 +01:00
Fix ODR violation because of name clash in matchers
This commit is contained in:
parent
db32550898
commit
75b711a360
@ -17,9 +17,9 @@ namespace Catch {
|
|||||||
namespace Matchers {
|
namespace Matchers {
|
||||||
|
|
||||||
template<typename T, typename Alloc>
|
template<typename T, typename Alloc>
|
||||||
struct ContainsElementMatcher final : MatcherBase<std::vector<T, Alloc>> {
|
struct VectorContainsElementMatcher final : MatcherBase<std::vector<T, Alloc>> {
|
||||||
|
|
||||||
ContainsElementMatcher(T const& comparator):
|
VectorContainsElementMatcher(T const& comparator):
|
||||||
m_comparator(comparator)
|
m_comparator(comparator)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
@ -168,8 +168,8 @@ namespace Matchers {
|
|||||||
|
|
||||||
//! Creates a matcher that matches vectors that contain `comparator` as an element
|
//! Creates a matcher that matches vectors that contain `comparator` as an element
|
||||||
template<typename T, typename Alloc = std::allocator<T>>
|
template<typename T, typename Alloc = std::allocator<T>>
|
||||||
ContainsElementMatcher<T, Alloc> VectorContains( T const& comparator ) {
|
VectorContainsElementMatcher<T, Alloc> VectorContains( T const& comparator ) {
|
||||||
return ContainsElementMatcher<T, Alloc>(comparator);
|
return VectorContainsElementMatcher<T, Alloc>(comparator);
|
||||||
}
|
}
|
||||||
|
|
||||||
//! Creates a matcher that matches vectors that are exactly equal to `comparator`
|
//! Creates a matcher that matches vectors that are exactly equal to `comparator`
|
||||||
|
Loading…
Reference in New Issue
Block a user