mirror of
https://github.com/catchorg/Catch2.git
synced 2025-12-09 03:39:33 +01:00
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:
@@ -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;
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user