Merge pull request #644 from grzadr/patch-1

Fix indentation in tests/catch.hpp:2916
This commit is contained in:
Gabi Melman 2018-02-22 11:44:55 +02:00 committed by GitHub
commit e64847bd09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2913,7 +2913,7 @@ namespace Catch {
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;
return true;
}
};