Fix incorrect warning "Unknown Doxygen command: ."

This commit is contained in:
William S Fulton 2021-03-01 22:51:01 +00:00
commit 69f9509c2b
3 changed files with 10 additions and 0 deletions

View file

@ -29,6 +29,7 @@ enum SomeEnum
*/
struct SomeStruct
{
int width; ///< \**immutable** image width in pixels
};
/**

View file

@ -45,6 +45,12 @@ public class doxygen_parsing_runme {
" The struct comment \n" +
" \n" +
"");
wantedComments.put("doxygen_parsing.SomeStruct.setWidth(int)",
"**immutable** image width in pixels \n" +
"");
wantedComments.put("doxygen_parsing.SomeStruct.getWidth()",
"**immutable** image width in pixels \n" +
"");
wantedComments.put("doxygen_parsing.doxygen_parsing.setSomeVar(int)",
" The var comment \n" +
" \n" +