Skip to content
Snippets Groups Projects
Commit 2bc560bc authored by Jonathan Lambrechts's avatar Jonathan Lambrechts
Browse files

remove printf :-)

parent 7223d51b
No related branches found
No related tags found
No related merge requests found
...@@ -290,7 +290,6 @@ void binding::checkDocCompleteness() ...@@ -290,7 +290,6 @@ void binding::checkDocCompleteness()
nBad++; nBad++;
} }
luaMethodBinding *constructor = cb->second->getConstructor(); luaMethodBinding *constructor = cb->second->getConstructor();
printf("checking %s\n", cb->first.c_str());
if(constructor){ if(constructor){
if(constructor->getDescription().empty()){ if(constructor->getDescription().empty()){
Msg::Error("binded constructor of class %s has no description.", Msg::Error("binded constructor of class %s has no description.",
...@@ -314,7 +313,6 @@ void binding::checkDocCompleteness() ...@@ -314,7 +313,6 @@ void binding::checkDocCompleteness()
mb->first.c_str()); mb->first.c_str());
nBad++; nBad++;
} }
printf("checking %s\n", mb->first.c_str());
std::vector<std::string> argTypeNames; std::vector<std::string> argTypeNames;
mb->second->getArgTypeNames(argTypeNames); mb->second->getArgTypeNames(argTypeNames);
int nTypeArg = countInArguments(argTypeNames); int nTypeArg = countInArguments(argTypeNames);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment