You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-08 12:40:44 +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:
@@ -318,7 +318,7 @@ public:
|
||||
insert(i, p_val);
|
||||
}
|
||||
|
||||
operator Vector<T>() const {
|
||||
explicit operator Vector<T>() const {
|
||||
Vector<T> ret;
|
||||
ret.resize(count);
|
||||
T *w = ret.ptrw();
|
||||
|
||||
Reference in New Issue
Block a user