Fix syntax error for misplaced Doxygen comment after struct/class member.
Fix syntax error using Doxygen member groups syntax, "///*}", when used after final struct/class member. Issue #1636
This commit is contained in:
parent
dc04564023
commit
8a24c19d26
6 changed files with 45 additions and 1 deletions
|
|
@ -199,6 +199,16 @@ public class doxygen_misc_constructs_runme {
|
|||
" <br>\n" +
|
||||
" And this is not a list item any more.\n" +
|
||||
"");
|
||||
|
||||
wantedComments.put("doxygen_misc_constructs.IncorrectlyDocumentedMembers",
|
||||
" Incorrectly documented members, these should be post document comments, Github issue #1636");
|
||||
|
||||
wantedComments.put("doxygen_misc_constructs.IncorrectlyDocumentedMembers.setBbbb(int)",
|
||||
" really for bbbb value");
|
||||
|
||||
wantedComments.put("doxygen_misc_constructs.IncorrectlyDocumentedMembers.getBbbb()",
|
||||
" really for bbbb value");
|
||||
|
||||
wantedComments.put("doxygen_misc_constructs.doxygen_misc_constructs.isNoSpaceValidA()",
|
||||
" This comment without space after '*' is valid in Doxygen.\n" +
|
||||
"\n" +
|
||||
|
|
|
|||
|
|
@ -132,6 +132,14 @@ public class doxygen_parsing_runme {
|
|||
wantedComments.put("doxygen_parsing.doxygen_parsingConstants.CONSTANT_VALUE",
|
||||
"The constant comment \n" +
|
||||
"");
|
||||
wantedComments.put("doxygen_parsing.Foo1636.getGroupmember1()",
|
||||
"groupmember1 description");
|
||||
wantedComments.put("doxygen_parsing.Foo1636.setGroupmember1(int)",
|
||||
"groupmember1 description");
|
||||
wantedComments.put("doxygen_parsing.Foo1636.getGroupmember2()",
|
||||
"groupmember2 description");
|
||||
wantedComments.put("doxygen_parsing.Foo1636.setGroupmember2(int)",
|
||||
"groupmember2 description");
|
||||
wantedComments.put("doxygen_parsing.Foo1750.getA()",
|
||||
"");
|
||||
wantedComments.put("doxygen_parsing.Foo1750.getB()",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue