[Bf-blender-cvs] [d724444dba6] functions: remove some debug prints

Jacques Lucke noreply at git.blender.org
Fri Sep 27 12:35:13 CEST 2019


Commit: d724444dba62fe71d881207c57190751df80e2d4
Author: Jacques Lucke
Date:   Fri Sep 27 12:33:26 2019 +0200
Branches: functions
https://developer.blender.org/rBd724444dba62fe71d881207c57190751df80e2d4

remove some debug prints

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

M	source/blender/functions/core/data_graph.cpp
M	source/blender/functions/core/function.cpp

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

diff --git a/source/blender/functions/core/data_graph.cpp b/source/blender/functions/core/data_graph.cpp
index f4fcae37569..c0621dd396a 100644
--- a/source/blender/functions/core/data_graph.cpp
+++ b/source/blender/functions/core/data_graph.cpp
@@ -24,10 +24,6 @@ DataGraph::~DataGraph()
       node.source_info->~SourceInfo();
     }
   }
-
-  if (m_resources) {
-    m_resources->print("Data Graph");
-  }
 }
 
 void DataGraph::print_socket(DataSocket socket) const
diff --git a/source/blender/functions/core/function.cpp b/source/blender/functions/core/function.cpp
index 9ccf432e6cd..f2f042015df 100644
--- a/source/blender/functions/core/function.cpp
+++ b/source/blender/functions/core/function.cpp
@@ -30,10 +30,6 @@ Function::~Function()
     }
   }
 
-  if (m_resources) {
-    m_resources->print(m_name);
-  }
-
   MEM_freeN((void *)m_strings);
 }



More information about the Bf-blender-cvs mailing list