Changeset 78 in dev for BasicCompiler_Common/Procedure.cpp
- Timestamp:
- Mar 25, 2007, 2:47:49 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler_Common/Procedure.cpp
r77 r78 120 120 Type::StringToType( temporary, type ); 121 121 122 /* 123 TODO: 消す(TypeDef関連の変更) 122 124 if(temporary[0]=='*'&& 123 125 temporary[1]==1&& … … 145 147 else{ 146 148 //TypeDefをする前のベース型を取得 147 GetOriginalTypeName (temporary);148 } 149 GetOriginalTypeName_Old(temporary); 150 }*/ 149 151 150 152 if( type.IsNull() ){ … … 158 160 } 159 161 162 /* 163 TODO: 消す(TypeDef関連の変更) 160 164 if( type.IsProcPtr() ){ 161 165 //関数ポインタの場合 162 166 type.SetIndex( AddProcPtrInfo(temporary+3,temporary[2], nowLine) ); 163 } 167 }*/ 164 168 165 169 Parameter *pParam = new Parameter( name, type, isRef, initValue ); … … 274 278 Type::StringToType( temporary, type ); 275 279 280 /* 281 TODO: 消す(TypeDef関連の変更) 276 282 if(temporary[0]=='*'&& 277 283 temporary[1]==1&& … … 299 305 else{ 300 306 //TypeDefをする前のベース型を取得 301 GetOriginalTypeName (temporary);302 } 307 GetOriginalTypeName_Old(temporary); 308 }*/ 303 309 304 310 if( type.IsNull() ){ … … 312 318 } 313 319 320 /* 321 TODO: 消す(TypeDef関連の変更) 314 322 if( type.IsProcPtr() ){ 315 323 //関数ポインタの場合 316 324 type.SetIndex( AddProcPtrInfo(temporary+3,temporary[2], nowLine) ); 317 } 325 }*/ 318 326 319 327 Parameter *pParam = new Parameter( name, type, isRef ); … … 527 535 Type::StringToType( temporary, type ); 528 536 537 /* 538 TODO: 消す(TypeDef関連の変更) 529 539 if(temporary[0]=='*'&& 530 540 temporary[1]==1&& … … 552 562 else{ 553 563 //TypeDefをする前のベース型を取得 554 GetOriginalTypeName (temporary);555 } 564 GetOriginalTypeName_Old(temporary); 565 }*/ 556 566 557 567 if( type.IsNull() ){ … … 565 575 } 566 576 577 /* 578 TODO: 消す(TypeDef関連の変更) 567 579 if( type.IsProcPtr() ){ 568 580 //関数ポインタの場合 569 581 type.SetIndex( AddProcPtrInfo(temporary+3,temporary[2], nowLine ) ); 570 } 582 }*/ 571 583 572 584 Parameter *pParam = new Parameter( name, type, isRef ); … … 731 743 Type::StringToType( temporary, type ); 732 744 745 /* 746 TODO: 消す(TypeDef関連の変更) 733 747 if(temporary[0]=='*'&& 734 748 temporary[1]==1&& … … 756 770 else{ 757 771 //TypeDefをする前のベース型を取得 758 GetOriginalTypeName (temporary);759 } 772 GetOriginalTypeName_Old(temporary); 773 }*/ 760 774 761 775 if( type.IsNull() ){ … … 769 783 } 770 784 785 /* 786 TODO: 消す(TypeDef関連の変更) 771 787 if( type.IsProcPtr() ){ 772 788 //関数ポインタの場合 773 789 type.SetIndex( AddProcPtrInfo(temporary+3,temporary[2], nowLine ) ); 774 } 790 }*/ 775 791 776 792 Parameter *pParam = new Parameter( name, type, isRef );
Note:
See TracChangeset
for help on using the changeset viewer.