You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Fix missed renamings from empty() to is_empty()
Those were missed in #44401 or added by later PRs.
This commit is contained in:
@@ -188,7 +188,7 @@ String find_msbuild_tools_path() {
|
||||
if (key == "installationPath") {
|
||||
String val = line.substr(sep_idx + 1, line.length()).strip_edges();
|
||||
|
||||
ERR_BREAK(val.empty());
|
||||
ERR_BREAK(val.is_empty());
|
||||
|
||||
if (!val.ends_with("\\")) {
|
||||
val += "\\";
|
||||
|
||||
Reference in New Issue
Block a user