Changeset 5 in dev for BasicCompiler_Common/Class.cpp
- Timestamp:
- Dec 5, 2006, 1:42:16 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler_Common/Class.cpp
r4 r5 4 4 #include "../BasicCompiler64/opcode.h" 5 5 #else 6 #include "../BasicCompiler /opcode.h"6 #include "../BasicCompiler32/opcode.h" 7 7 #endif 8 8 … … 510 510 i+=2; 511 511 //アラインメント修飾子 512 if( memicmp(basbuf+i,"Align(",6)==0){512 if(_memicmp(basbuf+i,"Align(",6)==0){ 513 513 i+=6; 514 514 i=JumpStringInPare(basbuf,i)+1; … … 886 886 //アラインメント修飾子 887 887 int iAlign=0; 888 if( memicmp(basbuf+i,"Align(",6)==0){888 if(_memicmp(basbuf+i,"Align(",6)==0){ 889 889 i+=6; 890 890 i+=GetStringInPare_RemovePare(temporary,basbuf+i)+1;
Note:
See TracChangeset
for help on using the changeset viewer.