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:
Diffstat (limited to 'source/blender/blenkernel')
-rw-r--r--source/blender/blenkernel/BKE_attribute_access.hh10
1 files changed, 1 insertions, 9 deletions
diff --git a/source/blender/blenkernel/BKE_attribute_access.hh b/source/blender/blenkernel/BKE_attribute_access.hh
index 7a4dc5270af..cf54e7efa0d 100644
--- a/source/blender/blenkernel/BKE_attribute_access.hh
+++ b/source/blender/blenkernel/BKE_attribute_access.hh
@@ -265,15 +265,7 @@ class OutputAttribute {
{
}
- OutputAttribute(OutputAttribute &&other)
- : varray_(std::move(other.varray_)),
- domain_(other.domain_),
- save_(other.save_),
- optional_span_varray_(std::move(other.optional_span_varray_)),
- ignore_old_values_(other.ignore_old_values_),
- save_has_been_called_(other.save_has_been_called_)
- {
- }
+ OutputAttribute(OutputAttribute &&other) = default;
~OutputAttribute();