Silence unused variable warning, from an intermediate PR.

The first part of the node panels PR has an unused API call that will be
reenabled with the next stages (#110885).
This commit is contained in:
Lukas Tönne
2023-08-09 15:56:00 +02:00
parent 2367ed2ef2
commit f1ec9f7190
@@ -194,6 +194,7 @@ inline bNodeTreeInterfaceSocket *add_interface_socket_from_node(bNodeTree &ntree
const bNodeSocketType *typeinfo = iosock->socket_typeinfo();
if (typeinfo->interface_from_socket) {
/* XXX Enable when bNodeSocketType callbacks have been updated. */
UNUSED_VARS(from_node);
// typeinfo->interface_from_socket(ntree.id, iosock, &from_node, &from_sock);
}
return iosock;