Changeset 465 in dev for trunk/ab5.0/abdev/BasicCompiler32/Compile_Set_Var.cpp
- Timestamp:
- Mar 24, 2008, 8:05:20 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler32/Compile_Set_Var.cpp
r461 r465 50 50 } 51 51 52 SetError(1,NULL,cp);52 compiler.errorMessenger.Output(1,NULL,cp); 53 53 } 54 54 … … 155 155 if(type==DEF_DOUBLE){ 156 156 // TODO: 実装 157 SetError();157 compiler.errorMessenger.OutputFatalError(); 158 158 } 159 159 else if(type==DEF_SINGLE){ 160 160 // TODO: 実装 161 SetError();161 compiler.errorMessenger.OutputFatalError(); 162 162 } 163 163 else if(type==DEF_INT64||type==DEF_QWORD){ … … 180 180 if(!IsWholeNumberType(type)){ 181 181 //不正な型の場合 182 SetError(9,NULL,cp);182 compiler.errorMessenger.Output(9,NULL,cp); 183 183 return; 184 184 } … … 327 327 else if(pRelative->dwKind==VAR_REFGLOBAL){ 328 328 // 今は使われていない 329 SetError();329 compiler.errorMessenger.OutputFatalError(); 330 330 331 331 if(pRelative->bOffsetOffset){
Note:
See TracChangeset
for help on using the changeset viewer.