[Bf-blender-cvs] [f039c43f952] functions: cleanup

Jacques Lucke noreply at git.blender.org
Mon Jul 22 18:13:19 CEST 2019


Commit: f039c43f95216a893337e38dbb2d88690e391dbe
Author: Jacques Lucke
Date:   Mon Jul 22 16:47:32 2019 +0200
Branches: functions
https://developer.blender.org/rBf039c43f95216a893337e38dbb2d88690e391dbe

cleanup

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

M	source/blender/functions/frontends/data_flow_nodes/builder.hpp

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

diff --git a/source/blender/functions/frontends/data_flow_nodes/builder.hpp b/source/blender/functions/frontends/data_flow_nodes/builder.hpp
index 71e58cc528f..af69b70d7dc 100644
--- a/source/blender/functions/frontends/data_flow_nodes/builder.hpp
+++ b/source/blender/functions/frontends/data_flow_nodes/builder.hpp
@@ -34,19 +34,18 @@ class BTreeGraphBuilder {
   DFGB_Node *insert_function(SharedFunction &fn);
   DFGB_Node *insert_matching_function(SharedFunction &fn, VirtualNode *vnode);
   DFGB_Node *insert_function(SharedFunction &fn, VirtualNode *vnode);
-  DFGB_Node *insert_function(SharedFunction &fn, struct bNodeLink *blink);
 
   /* Insert Link */
   void insert_link(DFGB_Socket a, DFGB_Socket b);
 
   /* Socket Mapping */
-  void map_socket(DFGB_Socket socket, struct VirtualSocket *vsocket);
+  void map_socket(DFGB_Socket socket, VirtualSocket *vsocket);
   void map_sockets(DFGB_Node *node, VirtualNode *vnode);
   void map_data_sockets(DFGB_Node *node, VirtualNode *vnode);
   void map_input(DFGB_Socket socket, VirtualNode *vnode, uint index);
   void map_output(DFGB_Socket socket, VirtualNode *vnode, uint index);
 
-  DFGB_Socket lookup_socket(struct VirtualSocket *vsocket);
+  DFGB_Socket lookup_socket(VirtualSocket *vsocket);
   bool verify_data_sockets_mapped(VirtualNode *vnode) const;
 
   /* Type Mapping */



More information about the Bf-blender-cvs mailing list