Skip to content
Snippets Groups Projects
Commit 66a71225 authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

Macroprocessor: cosmetic change

parent df01e528
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment