Various small code fixes. Some unwanted code removed.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2012-doxygen@13551 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dmitry Kabak 2012-08-07 20:04:23 +00:00
commit cecc793782
7 changed files with 36 additions and 177 deletions

View file

@ -32,7 +32,7 @@ String *DoxygenTranslator::getDoxygenComment(Node *node) {
String *DoxygenTranslator::getDocumentation(Node *node) {
if (!hasDocumentation(node))
return 0;
return NewString("");
return makeDocumentation(node);
}