diff options
Diffstat (limited to 'src/code.l')
-rw-r--r-- | src/code.l | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -2026,6 +2026,11 @@ RAWEND ")"[^ \t\(\)\\]{0,16}\" <SkipCPP>"//" { g_code->codify(yytext); } +<Body,FuncCall>"}" { + g_theVarContext.popScope(); + g_yyColNr++; + g_code->codify(yytext); + } <Body,FuncCall>"{" { g_theVarContext.pushScope(); |