Stop completely ignoring many Doxygen comments.

For some reason, Doxygen comments such as @class or @enum were considered to
be "structural" (whatever this means) and completely removed during the
parsing time. This is wrong as such comments can be attached to their
corresponding declarations and while it would be arguably better to check that
this is indeed the case (e.g. "@class Foo" really appears before or after the
declaration of this class), throwing them away is definitely not the right
thing to do and keeping them without any further checks is a better alternative.
This commit is contained in:
Vadim Zeitlin 2014-09-04 19:01:26 +02:00
commit cd1f4619d2
2 changed files with 0 additions and 23 deletions

View file

@ -73,34 +73,23 @@ int isStructuralDoxygen(String *s){
"callgraph",
"callergraph",
"category",
"class",
"def",
"defgroup",
"dir",
"enum",
"example",
"file",
"fn",
"headerfile",
"hideinitializer",
"interface",
"internal",
"mainpage",
"name",
"namespace",
"nosubgrouping",
"overload",
"package",
"page",
"property",
"protocol",
"relates",
"relatesalso",
"showinitializer",
"struct",
"typedef",
"union",
"var",
"weakgroup",
};