Added braces to emphasise the return logic

This commit is contained in:
Phil Nash 2016-09-27 09:58:12 +01:00
parent 916317bd81
commit c23b374f3d
1 changed files with 2 additions and 1 deletions

View File

@ -64,9 +64,10 @@ namespace Catch {
bool matches( TestCaseInfo const& testCase ) const {
// All patterns in a filter must match for the filter to be a match
for( std::vector<Ptr<Pattern> >::const_iterator it = m_patterns.begin(), itEnd = m_patterns.end(); it != itEnd; ++it )
for( std::vector<Ptr<Pattern> >::const_iterator it = m_patterns.begin(), itEnd = m_patterns.end(); it != itEnd; ++it ) {
if( !(*it)->matches( testCase ) )
return false;
}
return true;
}
};