We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e95e4be + 6d8bb9c commit d51c1a3Copy full SHA for d51c1a3
src/pre.l
@@ -926,6 +926,9 @@ NUMBER {INTEGER_NUMBER}|{FLOAT_NUMBER}
926
<FindDefineArgs>{CPPC}[/!].*\n { // replace C++ single line style comment by C style comment
927
yyextra->defArgsStr+=QCString("/**")+&yytext[3]+" */";
928
}
929
+<FindDefineArgs>{CPPC}.*\n { // replace C++ single line style comment by C style comment
930
+ yyextra->defArgsStr+=QCString("/*")+&yytext[2]+" */";
931
+ }
932
<FindDefineArgs>\" {
933
yyextra->defArgsStr+=*yytext;
934
BEGIN(ReadString);
0 commit comments