Changeset 97 in dev for BasicCompiler64/Compile_Var.cpp
- Timestamp:
- Apr 16, 2007, 3:52:40 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler64/Compile_Var.cpp
r96 r97 366 366 return true; 367 367 } 368 void GetWithName(char *buffer){369 extern WITHINFO WithInfo;370 int i;371 372 buffer[0]=0;373 for(i=0;i<WithInfo.num;i++)374 lstrcat(buffer,WithInfo.ppName[i]);375 }376 368 377 369 int LocalVar_ThisPtrOffset; … … 401 393 //例: func().member 402 394 395 // TODO: 消す 396 SetError(); 397 return false; 398 /* 403 399 void *pInfo; 404 400 int idProc=GetProc(VarName,(void **)&pInfo); … … 435 431 436 432 return true; 437 } 433 }*/ 438 434 } 439 435 … … 864 860 } 865 861 else if( type.Is64() || type.IsPointer() ){ 866 if(type.GetBasicType()==typeOfPtrChar && type.GetIndex()==LITERAL_STRING){862 if(type.GetBasicType()==typeOfPtrChar){ 867 863 //文字列定数のとき 868 864 … … 1010 1006 } 1011 1007 else if( type.Is64() || type.IsPointer() ){ 1012 if(type.GetBasicType()==typeOfPtrChar && type.GetIndex()==LITERAL_STRING){1008 if(type.GetBasicType()==typeOfPtrChar ){ 1013 1009 //文字列定数のとき 1014 1010
Note:
See TracChangeset
for help on using the changeset viewer.