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:
authorJacques Lucke <jacques@blender.org>2021-10-30 21:35:26 +0300
committerJacques Lucke <jacques@blender.org>2021-10-30 21:35:26 +0300
commit928b7b534079d0de16146cd2eae83d875731a9b2 (patch)
tree41dd66c6c7ef02f99bfb7b736010cc6c267e65bf
parentaa22839aa1d7a7622489551a24a340583d2c9fae (diff)
cleanup
-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)