Get rid of unused parameter in TestEventListenerBase::assertionEnded()

Just don't name this parameter to avoid warnings about it being unused.

No real changes.
This commit is contained in:
Vadim Zeitlin 2015-10-29 00:52:05 +01:00
parent b3b2352045
commit 4c41641799
2 changed files with 3 additions and 3 deletions

View File

@ -237,7 +237,7 @@ namespace Catch {
{} {}
virtual void assertionStarting( AssertionInfo const& ) CATCH_OVERRIDE {} virtual void assertionStarting( AssertionInfo const& ) CATCH_OVERRIDE {}
virtual bool assertionEnded( AssertionStats const& _assertionStats ) CATCH_OVERRIDE { virtual bool assertionEnded( AssertionStats const& ) CATCH_OVERRIDE {
return false; return false;
} }
}; };

View File

@ -1,6 +1,6 @@
/* /*
* Catch v1.2.1-develop.14 * Catch v1.2.1-develop.14
* Generated: 2015-09-27 03:27:04.922060 * Generated: 2015-10-29 00:52:04.464709
* ---------------------------------------------------------- * ----------------------------------------------------------
* This file has been merged from multiple headers. Please don't edit it directly * This file has been merged from multiple headers. Please don't edit it directly
* Copyright (c) 2012 Two Blue Cubes Ltd. All rights reserved. * Copyright (c) 2012 Two Blue Cubes Ltd. All rights reserved.
@ -8246,7 +8246,7 @@ namespace Catch {
{} {}
virtual void assertionStarting( AssertionInfo const& ) CATCH_OVERRIDE {} virtual void assertionStarting( AssertionInfo const& ) CATCH_OVERRIDE {}
virtual bool assertionEnded( AssertionStats const& _assertionStats ) CATCH_OVERRIDE { virtual bool assertionEnded( AssertionStats const& ) CATCH_OVERRIDE {
return false; return false;
} }
}; };