diff options
Diffstat (limited to 'idlc')
-rw-r--r-- | idlc/source/scanner.l | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/idlc/source/scanner.l b/idlc/source/scanner.l index 7e3423fa8dc5..e7fff5ee31e6 100644 --- a/idlc/source/scanner.l +++ b/idlc/source/scanner.l @@ -396,15 +396,15 @@ published return IDL_PUBLISHED; } <COMMENT>[^*]+ { - docu += OString(yytext); + docu += yytext; } <COMMENT>"*"[^*/]+ { - docu += OString(yytext); + docu += yytext; } <COMMENT>"**" { - docu += OString(yytext); + docu += yytext; } <COMMENT>[*]+"/" { @@ -423,21 +423,21 @@ published return IDL_PUBLISHED; } <DOCU>[^*\n]+ { - docu += OString(yytext); + docu += yytext; } <DOCU>"\n"[ \t]*"*"{1} { idlc()->setLineNumber( idlc()->getLineNumber() + 1); - docu += OString("\n"); + docu += "\n"; } <DOCU>"\n" { idlc()->setLineNumber( idlc()->getLineNumber() + 1); - docu += OString(yytext); + docu += yytext; } <DOCU>"*"[^*^/\n]* { - docu += OString(yytext); + docu += yytext; } <DOCU>"\n"[ \t]*"*/" { |