From 9576ad910856d513dc155e71e950fdd2b9a7b194 Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Wed, 4 Nov 2015 18:11:54 +0000 Subject: [PATCH] Removed unused parameter - as per PR #530 --- include/reporters/catch_reporter_bases.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/reporters/catch_reporter_bases.hpp b/include/reporters/catch_reporter_bases.hpp index 936bc6d7..4fdeb195 100644 --- a/include/reporters/catch_reporter_bases.hpp +++ b/include/reporters/catch_reporter_bases.hpp @@ -237,7 +237,7 @@ namespace Catch { {} virtual void assertionStarting( AssertionInfo const& ) CATCH_OVERRIDE {} - virtual bool assertionEnded( AssertionStats const& _assertionStats ) CATCH_OVERRIDE { + virtual bool assertionEnded( AssertionStats const& ) CATCH_OVERRIDE { return false; } };