mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 22:00:10 +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
|
|
@ -1563,8 +1563,8 @@ void TextureStorage::texture_replace(RID p_texture, RID p_by_texture) {
|
|||
tex_to->tex_id = 0;
|
||||
}
|
||||
|
||||
Vector<RID> proxies_to_update = tex_to->proxies;
|
||||
Vector<RID> proxies_to_redirect = tex_from->proxies;
|
||||
Vector<RID> proxies_to_update = Vector<RID>(tex_to->proxies);
|
||||
Vector<RID> proxies_to_redirect = Vector<RID>(tex_from->proxies);
|
||||
|
||||
*tex_to = *tex_from;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue