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
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
1 changed files with 1 additions and 1 deletions

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 )
{}
};