Changeset 43 in dev for BasicCompiler_Common
- Timestamp:
- Jan 30, 2007, 2:40:30 AM (18 years ago)
- Location:
- BasicCompiler_Common
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler_Common/Intermediate_Step2.cpp
r42 r43 376 376 KillStringSpaces(Command+2); 377 377 break; 378 case ESC_CONST:379 case ESC_BYREF:380 KillStringSpaces(Command+2);381 break;382 378 case ESC_TYPEDEF: 383 379 KillStringSpaces(Command+2); … … 409 405 case ESC_TYPE: 410 406 KillStringSpaces(Command+2); 407 break; 408 409 case ESC_CONST: 410 KillStringSpaces(Command+2); 411 if( Command[2] == 1 && Command[3] == ESC_ENUM ){ 412 nCountOfNonGlobalScope++; 413 } 411 414 break; 412 415 -
BasicCompiler_Common/common.h
r40 r43 38 38 39 39 #ifdef _AMD64_ 40 #define VER_INFO "β1 0(x64)"40 #define VER_INFO "β11 (x64)" 41 41 #else 42 #define VER_INFO "β1 0"42 #define VER_INFO "β11" 43 43 #endif 44 44 -
BasicCompiler_Common/preprocessor.cpp
r31 r43 74 74 #endif 75 75 76 extern BOOL bDll; 77 if( bDll ){ 78 add("_DLL"); 79 } 80 76 81 char temporary[255]; 77 82 sprintf(temporary,"_AB_VER%d",MAJOR_VER);
Note:
See TracChangeset
for help on using the changeset viewer.