Ignore:
Timestamp:
05/22/15 04:15:14 (9 years ago)
Author:
sz
Message:

Moving frams/virtfile to common/virtfile:

  • file references updated (includes, makefile)
  • common/virtfile can no longer use the Framsticks specific SString (using std::string instead)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/vm/framscript.l

    r348 r382  
    7676                    if (end)
    7777                       {
    78                        trctx.tmp+=SString(yytext,end-yytext);
    79                        framscriptlval.setString(quoteMultiline(trctx.tmp));
     78                       trctx.tmp+=string(yytext,end-yytext);
     79                       framscriptlval.setString(quoteMultiline(SString(trctx.tmp.c_str())));
    8080                       yyless((end-yytext)+3);
    8181                       BEGIN 0;
     
    8383                       }
    8484                    else
    85                        trctx.tmp+=SString(yytext,yyleng);
     85                       trctx.tmp+=string(yytext,yyleng);
    8686                    }
    8787<multiline>\n       {trctx.line++; trctx.linechanged=true; trctx.tmp+="\n";}
Note: See TracChangeset for help on using the changeset viewer.