Fix some more warnings

This commit is contained in:
Lynix
2017-09-30 15:00:42 +02:00
parent fb354b1204
commit 508554fcb1
4 changed files with 29 additions and 29 deletions

View File

@@ -159,7 +159,7 @@ namespace Nz
inline Cast::Cast(ExpressionType castTo, ExpressionPtr first, ExpressionPtr second, ExpressionPtr third, ExpressionPtr fourth) :
exprType(castTo),
expressions({first, second, third, fourth})
expressions({ {first, second, third, fourth} })
{
unsigned int componentCount = 0;
unsigned int requiredComponents = GetComponentCount(exprType);