Small defensive tweak on checking expression

This commit is contained in:
Phil Nash 2011-03-01 09:55:17 +00:00
parent e401601ac1
commit 01234172a9
1 changed files with 10 additions and 1 deletions

View File

@ -44,7 +44,7 @@ namespace Catch
m_filename( filename ),
m_line( line ),
m_expr( expr ),
m_op( m_expr[0] == '!' ? "!" : "" ),
m_op( isNotExpression( expr ) ? "!" : "" ),
m_result( result ),
m_isNot( isNot ),
m_expressionIncomplete( false )
@ -153,6 +153,15 @@ namespace Catch
return "{can't expand - use " + m_macroName + "_NOT( " + m_expr.substr(1) + " ) instead of " + m_macroName + "( " + m_expr + " ) for better diagnostics}";
}
///////////////////////////////////////////////////////////////////////////
bool isNotExpression
(
const char* expr
)
{
return expr && expr[0] == '!';
}
protected:
std::string m_macroName;
std::string m_filename;