[Bf-blender-cvs] [05d85c52a23] functions: rename

Jacques Lucke noreply at git.blender.org
Fri Aug 2 19:18:18 CEST 2019


Commit: 05d85c52a232cc6382be7f3002cee29b4a4ac19b
Author: Jacques Lucke
Date:   Fri Aug 2 19:18:13 2019 +0200
Branches: functions
https://developer.blender.org/rB05d85c52a232cc6382be7f3002cee29b4a4ac19b

rename

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

M	source/blender/functions/frontends/data_flow_nodes/graph_generation.cpp

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

diff --git a/source/blender/functions/frontends/data_flow_nodes/graph_generation.cpp b/source/blender/functions/frontends/data_flow_nodes/graph_generation.cpp
index e88e2a06e8b..4a9799e416a 100644
--- a/source/blender/functions/frontends/data_flow_nodes/graph_generation.cpp
+++ b/source/blender/functions/frontends/data_flow_nodes/graph_generation.cpp
@@ -7,7 +7,7 @@
 namespace FN {
 namespace DataFlowNodes {
 
-static bool insert_functions_for_bnodes(VTreeDataGraphBuilder &builder)
+static bool insert_nodes(VTreeDataGraphBuilder &builder)
 {
   auto &inserters = MAPPING_node_inserters();
 
@@ -52,7 +52,7 @@ ValueOrError<VTreeDataGraph> generate_graph(VirtualNodeTree &vtree)
 {
   VTreeDataGraphBuilder builder(vtree);
 
-  if (!insert_functions_for_bnodes(builder)) {
+  if (!insert_nodes(builder)) {
     return BLI_ERROR_CREATE("error inserting functions for nodes");
   }



More information about the Bf-blender-cvs mailing list