Explicitly inline trivial function in CumulativeReporterBase impl

This commit is contained in:
Martin Hořeňovský 2020-11-17 21:02:11 +01:00
parent bd1e76cc3a
commit 3610eb81b1
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
1 changed files with 2 additions and 5 deletions

View File

@ -29,9 +29,6 @@ namespace Catch {
SectionInfo const& m_other;
};
void prepareExpandedExpression( AssertionResult& result ) {
result.getExpandedExpression();
}
} // namespace
@ -71,8 +68,8 @@ namespace Catch {
// Our section stack copy of the assertionResult will likely outlive the
// temporary, so it must be expanded or discarded now to avoid calling
// a destroyed object later.
prepareExpandedExpression(
const_cast<AssertionResult&>( assertionStats.assertionResult ) );
static_cast<void>(
assertionStats.assertionResult.getExpandedExpression() );
SectionNode& sectionNode = *m_sectionStack.back();
sectionNode.assertions.push_back( assertionStats );
return true;