Commit: cd04c61f4fc6ce8971970d5336369c4ca0ca5167
Author: Brecht Van Lommel
Date: Fri Jul 8 16:26:13 2022 +0200
Branches: temp-T97352-3d-texturing-seam-bleeding-b2
https://developer.blender.org/rBcd04c61f4fc6ce8971970d5336369c4ca0ca5167
Fix bug in recently added MutableVArraySpan move constructor
===================================================================
M source/blender/blenlib/BLI_virtual_array.hh
===================================================================
diff --git a/source/blender/blenlib/BLI_virtual_array.hh
b/source/blender/blenlib/BLI_virtual_array.hh
index 56b2f9f6c6f..438fcc4b8f7 100644
--- a/source/blender/blenlib/BLI_virtual_array.hh
+++ b/source/blender/blenlib/BLI_virtual_array.hh
@@ -1221,7 +1221,7 @@ template<typename T> class MutableVArraySpan final :
public MutableSpan<T> {
MutableVArraySpan(MutableVArraySpan &&other)
: varray_(std::move(other.varray_)),
- owned_data_(std::move(owned_data_)),
+ owned_data_(std::move(other.owned_data_)),
show_not_saved_warning_(other.show_not_saved_warning_)
{
if (!varray_) {
_______________________________________________
Bf-blender-cvs mailing list
[email protected]
List details, subscription details or unsubscribe:
https://lists.blender.org/mailman/listinfo/bf-blender-cvs