Fix missing return error introduced by last commit

End of non-void function was being reached since
f5535fcb83
This commit is contained in:
Luca Rood
2017-07-03 12:12:27 +02:00
parent f5535fcb83
commit d48a9528ca

View File

@@ -167,8 +167,9 @@ bool ConstantFolder::try_bypass_or_make_constant(ShaderInput *input, bool clamp)
graph->disconnect(other);
}
}
return false;
}
return false;
}
bool ConstantFolder::is_zero(ShaderInput *input) const