mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 07:53:26 +00:00
Make LocalVector
-> Span
conversion function explicit.
This commit is contained in:
parent
5b8789e83a
commit
d78e3b050e
1 changed files with 1 additions and 1 deletions
|
@ -295,7 +295,7 @@ public:
|
|||
}
|
||||
}
|
||||
|
||||
LocalVector(const Span<T> &p_from) {
|
||||
explicit LocalVector(const Span<T> &p_from) {
|
||||
resize(p_from.size());
|
||||
for (U i = 0; i < count; i++) {
|
||||
data[i] = p_from[i];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue