From 8c459dd207b541b68664db33026361a3ee491a44 Mon Sep 17 00:00:00 2001 From: nabijaczleweli Date: Mon, 4 Jul 2016 12:44:08 +0200 Subject: [PATCH] Fix misindent Closes #679 --- include/internal/catch_test_spec.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/internal/catch_test_spec.hpp b/include/internal/catch_test_spec.hpp index 7e4ea9d1..bc700c1a 100644 --- a/include/internal/catch_test_spec.hpp +++ b/include/internal/catch_test_spec.hpp @@ -67,7 +67,7 @@ namespace Catch { for( std::vector >::const_iterator it = m_patterns.begin(), itEnd = m_patterns.end(); it != itEnd; ++it ) if( !(*it)->matches( testCase ) ) return false; - return true; + return true; } };