Minor cleanup in decomposer

This commit is contained in:
Martin Hořeňovský
2019-01-13 16:23:17 +01:00
parent 64a0f466ec
commit 1c99b0ff81

View File

@ -131,7 +131,7 @@ namespace Catch {
public:
explicit UnaryExpr( LhsT lhs )
: ITransientExpression{ false, lhs ? true : false },
: ITransientExpression{ false, static_cast<bool>(lhs) },
m_lhs( lhs )
{}
};