Make LocalVector -> Span conversion function explicit.

This commit is contained in:
Lukas Tenbrink 2025-10-13 12:44:17 +02:00
parent 5b8789e83a
commit d78e3b050e

View file

@ -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];