File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -5629,6 +5629,7 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
5629
5629
}
5630
5630
}
5631
5631
<CompoundName,ClassVar>{B}*"{"{B}* {
5632
+ yyextra->current->program.resize(0);
5632
5633
yyextra->current->fileName = yyextra->yyFileName ;
5633
5634
yyextra->current->bodyLine = yyextra->yyLineNr;
5634
5635
yyextra->current->bodyColumn = yyextra->yyColNr;
@@ -5880,7 +5881,9 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
5880
5881
BEGIN(BasesProt);
5881
5882
}
5882
5883
}
5883
- <Bases>{B}*"{"{B}* { yyextra->current->fileName = yyextra->yyFileName ;
5884
+ <Bases>{B}*"{"{B}* {
5885
+ yyextra->current->program.resize(0);
5886
+ yyextra->current->fileName = yyextra->yyFileName ;
5884
5887
yyextra->current->bodyLine = yyextra->yyLineNr;
5885
5888
yyextra->current->bodyColumn = yyextra->yyColNr;
5886
5889
yyextra->current->name = removeRedundantWhiteSpace(yyextra->current->name);
You can’t perform that action at this time.
0 commit comments