Skip to content

Commit c68bb4e

Browse files
committed
issue doxygen#11350 [C#] Documentation Generation Fails for Members Following a Property Getter with Curly Braces in char
Properly recognize a character literal in an CSharp Accessor Declaration.
1 parent c661656 commit c68bb4e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/scanner.l

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6948,6 +6948,7 @@ NONLopt [^\n]*
69486948
<CSAccessorDecl>"add" { if (yyextra->curlyCount==0) yyextra->current->spec.setAddable(true); }
69496949
<CSAccessorDecl>"remove" { if (yyextra->curlyCount==0) yyextra->current->spec.setRemovable(true); }
69506950
<CSAccessorDecl>"raise" { if (yyextra->curlyCount==0) yyextra->current->spec.setRaisable(true); }
6951+
<CSAccessorDecl>{CHARLIT} {}
69516952
<CSAccessorDecl>"\"" { BEGIN(CSString);}
69526953
<CSAccessorDecl>"." {}
69536954
<CSAccessorDecl>\n { lineCount(yyscanner); }

0 commit comments

Comments
 (0)