Changeset 97 in dev for BasicCompiler_Common/calculation.cpp
- Timestamp:
- Apr 16, 2007, 3:52:40 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler_Common/calculation.cpp
r79 r97 820 820 for(i=0,sp=0;i<pnum;i++){ 821 821 822 //型チェック(正常でない場合はエラーにする) 823 TypeErrorCheck(stack,sp,calc[i]%100); 822 if( enableerror ){ 823 //型チェック(正常でない場合はエラーにする) 824 TypeErrorCheck(stack,sp,calc[i]%100); 825 } 824 826 825 827 idCalc=calc[i]%100; … … 1088 1090 #pragma optimize("", on) 1089 1091 1090 BOOL GetConstCalcBuffer(c har *name,char *Parameter,char *pCalcBuffer){1092 BOOL GetConstCalcBuffer(const char *name,const char *Parameter,char *pCalcBuffer){ 1091 1093 extern HANDLE hHeap; 1092 1094 int i2,i3,i4,num; … … 1256 1258 pDllProc=GetDeclareHash(temporary); 1257 1259 if(pDllProc){ 1258 if( pDllProc->ReturnType().IsString Object() ){1260 if( pDllProc->ReturnType().IsStringClass() ){ 1259 1261 return 1; 1260 1262 } … … 1266 1268 pUserProc=GetSubHash(temporary); 1267 1269 if(pUserProc){ 1268 if( pUserProc->ReturnType().IsString Object() ){1270 if( pUserProc->ReturnType().IsStringClass() ){ 1269 1271 return 1; 1270 1272 } … … 1307 1309 return -1; 1308 1310 } 1309 if( varType.IsString Object() ){1311 if( varType.IsStringClass() ){ 1310 1312 return 1; 1311 1313 } … … 1526 1528 } 1527 1529 1530 calc[*pnum]=0; 1531 1528 1532 return 1; 1529 1533 }
Note:
See TracChangeset
for help on using the changeset viewer.