aboutsummaryrefslogtreecommitdiff
path: root/aidl_language_l.ll
diff options
context:
space:
mode:
Diffstat (limited to 'aidl_language_l.ll')
-rw-r--r--aidl_language_l.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/aidl_language_l.ll b/aidl_language_l.ll
index 3ff7c2eb..e43ef452 100644
--- a/aidl_language_l.ll
+++ b/aidl_language_l.ll
@@ -52,7 +52,7 @@ floatvalue [0-9]*\.?[0-9]+([eE][-+]?[0-9]+)?f?
\/\* { extra_text += yytext; BEGIN(LONG_COMMENT); }
<LONG_COMMENT>\*+\/ { extra_text += yytext; yylloc->step(); BEGIN(INITIAL);
- comments.push_back({Comment::Type::BLOCK, extra_text});
+ comments.push_back({extra_text});
extra_text.clear(); }
<LONG_COMMENT>\*+ { extra_text += yytext; }
<LONG_COMMENT>\n+ { extra_text += yytext; yylloc->lines(yyleng); }
@@ -62,7 +62,7 @@ floatvalue [0-9]*\.?[0-9]+([eE][-+]?[0-9]+)?f?
return yy::parser::token::C_STR; }
\/\/.* { extra_text += yytext; extra_text += "\n";
- comments.push_back({Comment::Type::LINE, extra_text});
+ comments.push_back({extra_text});
extra_text.clear(); }
\n+ { yylloc->lines(yyleng); yylloc->step(); }