[Bf-blender-cvs] [81935098f18] master: Fix: Debug build failure after recent variable name change

Hans Goudey noreply at git.blender.org
Thu Dec 29 21:36:42 CET 2022


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);
 }



More information about the Bf-blender-cvs mailing list