mirror of
https://github.com/godotengine/godot.git
synced 2025-10-20 00:13:30 +00:00
Merge pull request #107469 from Ivorforce/vector-localvector-explicit-span-conversions
Remove implicit conversions between `LocalVector` and `Vector`
This commit is contained in:
commit
21fd4faf1b
19 changed files with 52 additions and 52 deletions
|
@ -665,7 +665,7 @@ String GDScriptWorkspace::get_file_uri(const String &p_path) const {
|
|||
}
|
||||
|
||||
// Always return file URI's with authority part (encoding drive letters with leading slash), to maintain compat with RFC-1738 which required it.
|
||||
return "file:///" + String("/").join(encoded_parts);
|
||||
return "file:///" + String("/").join(Vector<String>(encoded_parts));
|
||||
}
|
||||
|
||||
void GDScriptWorkspace::publish_diagnostics(const String &p_path) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue