mirror of https://github.com/godotengine/godot
Merge pull request #44818 from ThakeeNathees/const-crash-fix
GDScript crash at incomplete const bug fix
This commit is contained in:
commit
bcfb698fb4
|
|
@ -976,6 +976,8 @@ GDScriptParser::ConstantNode *GDScriptParser::parse_constant() {
|
|||
push_error(R"(Expected initializer expression for constant.)");
|
||||
return nullptr;
|
||||
}
|
||||
} else {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
end_statement("constant declaration");
|
||||
|
|
|
|||
Loading…
Reference in New Issue