General cleanup for C++11

Also less allocations and less stack usage on the fatal condition path
This commit is contained in:
Martin Hořeňovský
2017-08-31 11:46:37 +02:00
parent e871742534
commit e8ec6bd73c
5 changed files with 63 additions and 62 deletions

View File

@@ -23,7 +23,7 @@ namespace Catch {
AssertionResultData( ResultWas::OfType _resultType, LazyExpression const& _lazyExpression );
ResultWas::OfType resultType = ResultWas::Unknown;
ResultWas::OfType resultType;
std::string message;
LazyExpression lazyExpression;