Remove unused doxygen code

This commit is contained in:
William S Fulton 2018-05-19 12:24:43 +01:00
commit 0483caaed5
3 changed files with 1 additions and 49 deletions

View file

@ -138,9 +138,6 @@ int Dispatcher::emit_one(Node *n) {
ret = namespaceDeclaration(n);
} else if (strcmp(tag, "template") == 0) {
ret = templateDeclaration(n);
}
else if (strcmp(tag, "doxycomm") == 0) {
ret = doxygenComment(n);
} else if (strcmp(tag, "lambda") == 0) {
ret = lambdaDeclaration(n);
}
@ -309,9 +306,6 @@ int Dispatcher::usingDeclaration(Node *n) {
int Dispatcher::namespaceDeclaration(Node *n) {
return defaultHandler(n);
}
int Dispatcher::doxygenComment(Node *n){
return defaultHandler(n);
}
/* Allocators */
Language::Language():
@ -2980,18 +2974,6 @@ int Language::usingDeclaration(Node *n) {
/* Stubs. Language modules need to implement these */
/* ----------------------------------------------------------------------
* Language::doxygenComment()
* ---------------------------------------------------------------------- */
int Language::doxygenComment(Node *n){
String *comment = Getattr(n, "comment");
Printf(stdout, "doxygenComment : %s\n", comment);
return SWIG_OK;
}
/* ----------------------------------------------------------------------
* Language::constantWrapper()
* ---------------------------------------------------------------------- */