Skip to content

Commit d51c1a3

Browse files
committed
Merge branch 'master' of github.com:doxygen/doxygen
2 parents e95e4be + 6d8bb9c commit d51c1a3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/pre.l

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -926,6 +926,9 @@ NUMBER {INTEGER_NUMBER}|{FLOAT_NUMBER}
926926
<FindDefineArgs>{CPPC}[/!].*\n { // replace C++ single line style comment by C style comment
927927
yyextra->defArgsStr+=QCString("/**")+&yytext[3]+" */";
928928
}
929+
<FindDefineArgs>{CPPC}.*\n { // replace C++ single line style comment by C style comment
930+
yyextra->defArgsStr+=QCString("/*")+&yytext[2]+" */";
931+
}
929932
<FindDefineArgs>\" {
930933
yyextra->defArgsStr+=*yytext;
931934
BEGIN(ReadString);

0 commit comments

Comments
 (0)