Fix: Debug build failure after recent variable name change

This commit is contained in:
Hans Goudey 2022-12-29 15:36:33 -05:00
parent 83b103fd2f
commit 81935098f1
1 changed files with 1 additions and 1 deletions

View File

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