Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/blender/functions/FN_generic_vector_array.hh5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/blender/functions/FN_generic_vector_array.hh b/source/blender/functions/FN_generic_vector_array.hh
index 7eb58cb6bfc..57efa1b5ba9 100644
--- a/source/blender/functions/FN_generic_vector_array.hh
+++ b/source/blender/functions/FN_generic_vector_array.hh
@@ -123,10 +123,9 @@ template<typename T> class GVectorArray_TypedMutableRef {
vector_array_->extend(index, values);
}
- void extend(const int64_t index, const VArrayImpl<T> &values)
+ void extend(const int64_t index, const VArray<T> &values)
{
- GVArrayImpl_For_VArray<T> array{values};
- this->extend(index, array);
+ vector_array_->extend(index, values);
}
MutableSpan<T> operator[](const int64_t index)