Changeset 523 for cpp/frams/vm


Ignore:
Timestamp:
07/03/16 17:36:35 (8 years ago)
Author:
Maciej Komosinski
Message:

No more overloading of fopen/fclose/... functions for the VirtFILE class. #define VIRTFILE_OVERLOADING to enable overloading only when necessary.

File:
1 edited

Legend:

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

    r489 r523  
    149149
    150150asmlines: /* empty */
    151         | ASMLINE            {fputs(str($1),trctx.out);fputc('\n',trctx.out);}
    152         | asmlines ASMLINE   {fputs(str($2),trctx.out);fputc('\n',trctx.out);}
     151        | ASMLINE            {trctx.out->Vputs(str($1));trctx.out->Vputc('\n');}
     152        | asmlines ASMLINE   {trctx.out->Vputs(str($2));trctx.out->Vputc('\n');}
    153153;
    154154
Note: See TracChangeset for help on using the changeset viewer.