diff options
-rw-r--r-- | src/commentscan.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commentscan.l b/src/commentscan.l index 125f5f0..386a1d5 100644 --- a/src/commentscan.l +++ b/src/commentscan.l @@ -2015,10 +2015,10 @@ RCSTAG "$"{ID}":"[^\n$]+"$" <OverloadParam>{DOCNL} { // end of argument if (*yytext=='\n') yyLineNr++; - addOutput('\n'); if (functionProto.stripWhiteSpace().isEmpty()) { // plain overload command addOutput(getOverloadDocs()); + addOutput('\n'); } else // overload declaration { |