First cut of Evaluate refactoring to remove int specialisations, among other things

This commit is contained in:
Phil Nash 2017-02-06 15:15:43 +00:00
parent e991c006b7
commit 39753558eb
5 changed files with 77 additions and 150 deletions

View file

@ -132,8 +132,8 @@ namespace Catch {
return AssertionResult( m_assertionInfo, data );
}
void ResultBuilder::reconstructExpression( std::string& dest ) const {
dest = m_assertionInfo.capturedExpression;
std::string ResultBuilder::reconstructExpression() const {
return m_assertionInfo.capturedExpression;
}
} // end namespace Catch