From c1f94441d64b4568803935ce2cdd6d17103657e2 Mon Sep 17 00:00:00 2001 From: Atul Kale Date: Thu, 9 Jun 2016 08:40:23 -0500 Subject: [PATCH] Fix indentation warnings from gcc 6.1.0 --- include/internal/catch_test_spec.hpp | 2 +- single_include/catch.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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; } }; diff --git a/single_include/catch.hpp b/single_include/catch.hpp index 79570fb4..b197d085 100644 --- a/single_include/catch.hpp +++ b/single_include/catch.hpp @@ -3226,7 +3226,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; } };