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 20:40:58 +0300
committerJacques Lucke <jacques@blender.org>2021-10-30 20:40:58 +0300
commit84626dfa1616e02afac26f975663997982b82805 (patch)
treed984114f827dee39021a4a595cfe501d81a6f996 /source/blender/blenkernel
parent3d0abb3be9f685584759209eda0070a214f2a716 (diff)
progress
Diffstat (limited to 'source/blender/blenkernel')
-rw-r--r--source/blender/blenkernel/BKE_attribute_access.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/BKE_attribute_access.hh b/source/blender/blenkernel/BKE_attribute_access.hh
index 610e17b7097..76528dd6b9e 100644
--- a/source/blender/blenkernel/BKE_attribute_access.hh
+++ b/source/blender/blenkernel/BKE_attribute_access.hh
@@ -279,9 +279,9 @@ template<typename T> class OutputAttribute_Typed {
return varray_;
}
- VMutableArrayImpl<T> *operator->()
+ VMutableArray<T> *operator->()
{
- return &*varray_;
+ return &varray_;
}
VMutableArray<T> &varray()