Macroprocessor: cosmetic change

issue#70
Sébastien Villemot 2018-07-31 12:00:56 +02:00
parent df01e52859
commit 66a712253a
1 changed files with 1 additions and 3 deletions

View File

@ -232,9 +232,7 @@ CONT \\\\
<STMT,EXPR>length { return token::LENGTH; }
<STMT,EXPR>\"[^\"]*\" {
string s{yytext + 1};
s.resize(s.length() - 1);
yylval->build<string>(s);
yylval->build<string>(yytext + 1).pop_back();
return token::STRING;
}