Function match
Synopsis
#include <include/internal/catch_matchers.h>
bool match(ArgT const &arg) const override
Description
No description yet.
Source
Lines 105-111 in include/internal/catch_matchers.h.
bool match( ArgT const& arg ) const override {
for( auto matcher : m_matchers ) {
if (matcher->match(arg))
return true;
}
return false;
}