Forgot to save all files..

This commit is contained in:
Lynix
2017-01-06 16:38:52 +01:00
parent f0a7430d34
commit 8a68df4c56
3 changed files with 6 additions and 6 deletions

View File

@@ -76,7 +76,7 @@ namespace Nz { namespace ShaderAst
ExpressionType BinaryOp::GetExpressionType() const
{
ShaderAst::ExpressionType exprType = ShaderAst::ExpressionType::None;
ShaderAst::ExpressionType exprType = ShaderAst::ExpressionType::Void;
switch (op)
{
@@ -91,7 +91,7 @@ namespace Nz { namespace ShaderAst
exprType = ExpressionType::Boolean;
}
NazaraAssert(exprType != ShaderAst::ExpressionType::None, "Unhandled builtin");
NazaraAssert(exprType != ShaderAst::ExpressionType::Void, "Unhandled builtin");
return exprType;
}