[Bf-blender-cvs] [5e92c27] soc-2014-fluid: debug output removed

Roman Pogribnyi noreply at git.blender.org
Wed Jul 23 20:07:28 CEST 2014


Commit: 5e92c2770a1c00f595896c8e20de1e9d43d4fdd1
Author: Roman Pogribnyi
Date:   Wed Jul 23 20:01:30 2014 +0200
Branches: soc-2014-fluid
https://developer.blender.org/rB5e92c2770a1c00f595896c8e20de1e9d43d4fdd1

debug output removed

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

M	source/blender/python/manta_pp/pwrapper/registry.cpp

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

diff --git a/source/blender/python/manta_pp/pwrapper/registry.cpp b/source/blender/python/manta_pp/pwrapper/registry.cpp
index 7ee336a..3dd268e 100644
--- a/source/blender/python/manta_pp/pwrapper/registry.cpp
+++ b/source/blender/python/manta_pp/pwrapper/registry.cpp
@@ -658,31 +658,24 @@ void setReference(Manta::PbClass* cls, PyObject* obj) {
 }
 
 Register::Register(const string& className, const string& funcName, GenericFunction func) {
-	cout<<"reg_method__"<<className<< ":::" << funcName <<  endl;
 	WrapperRegistry::instance().addMethod(className, funcName, func);
 }
 Register::Register(const string& className, const string& funcName, OperatorFunction func) {
-	cout<<"reg_oper__"<<className<< ":::" << funcName <<  endl;
 	WrapperRegistry::instance().addOperator(className, funcName, func);
 }
 Register::Register(const string& className, const string& funcName, Constructor func) {
-	cout<<"reg_constr__"<<className<< ":::" << funcName <<  endl;
 	WrapperRegistry::instance().addConstructor(className, func);
 }
 Register::Register(const string& className, const string& property, Getter getter, Setter setter) {
-	cout<<"reg_getset__"<<className<< ":::" << property <<  endl;
 	WrapperRegistry::instance().addGetSet(className, property, getter, setter);
 }
 Register::Register(const string& className, const string& pyName, const string& baseClass) {
-	cout<<"reg_class__"<<className<< ":::" << pyName <<  endl;
 	WrapperRegistry::instance().addClass(pyName, className, baseClass);
 }
 Register::Register(const string& file, const string& pythonCode) {
-	cout<<"reg_pyCode__"<<file<< ":::" << pythonCode <<  endl;
 	WrapperRegistry::instance().addPythonCode(file, pythonCode);
 }
 Register::Register(InitFunc func) { 
-	cout<<"reg_initfunc"<<  endl;
 	WrapperRegistry::instance().addExternalInitializer(func);        
 }




More information about the Bf-blender-cvs mailing list