Commit: 81935098f185e9c7139f4fb74e56968c3054c7bb
Author: Hans Goudey
Date:   Thu Dec 29 15:36:33 2022 -0500
Branches: master
https://developer.blender.org/rB81935098f185e9c7139f4fb74e56968c3054c7bb

Fix: Debug build failure after recent variable name change

===================================================================

M       source/blender/nodes/intern/node_declaration.cc

===================================================================

diff --git a/source/blender/nodes/intern/node_declaration.cc 
b/source/blender/nodes/intern/node_declaration.cc
index 449d8d05a04..f9921db3230 100644
--- a/source/blender/nodes/intern/node_declaration.cc
+++ b/source/blender/nodes/intern/node_declaration.cc
@@ -59,7 +59,7 @@ bNodeSocket &SocketDeclaration::update_or_build(bNodeTree 
&ntree,
                                                 bNodeSocket &socket) const
 {
   /* By default just rebuild. */
-  BLI_assert(socket.in_out == in_out_);
+  BLI_assert(socket.in_out == this->in_out);
   UNUSED_VARS_NDEBUG(socket);
   return this->build(ntree, node);
 }

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
List details, subscription details or unsubscribe:
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to