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>2020-07-23 19:07:31 +0300
committerJacques Lucke <jacques@blender.org>2020-07-23 19:07:44 +0300
commit149bb0c26d3c66fd221403f2f810754e8adc9eb8 (patch)
tree223befe0b2b21e915213c4b3e3f51770711e4d2b /source/blender/functions/FN_array_spans.hh
parent87c0a38a393d3326659ec18c4598149cb40fd1f4 (diff)
Cleanup: unify naming between different spans
Diffstat (limited to 'source/blender/functions/FN_array_spans.hh')
-rw-r--r--source/blender/functions/FN_array_spans.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/functions/FN_array_spans.hh b/source/blender/functions/FN_array_spans.hh
index c362fef3630..5f976711e06 100644
--- a/source/blender/functions/FN_array_spans.hh
+++ b/source/blender/functions/FN_array_spans.hh
@@ -158,7 +158,7 @@ class GVArraySpan : public VArraySpanBase<void> {
this->type_ = &array.type();
this->virtual_size_ = virtual_size;
this->category_ = VArraySpanCategory::SingleArray;
- this->data_.single_array.start = array.buffer();
+ this->data_.single_array.start = array.data();
this->data_.single_array.size = array.size();
}