1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-08 12:40:44 +00:00

Fix MSVC warning C4702: unreachable code

Part of #66537.
This commit is contained in:
Rémi Verschelde
2022-09-28 16:20:29 +02:00
parent 14e1f36e61
commit 7ab01450cf
11 changed files with 34 additions and 49 deletions

View File

@@ -4396,8 +4396,6 @@ bool ShaderLanguage::_is_operator_assign(Operator p_op) const {
default:
return false;
}
return false;
}
bool ShaderLanguage::_validate_varying_assign(ShaderNode::Varying &p_varying, String *r_message) {