Changeset 46 in dev for BasicCompiler32/Compile_Calc.cpp
- Timestamp:
- Feb 6, 2007, 1:19:17 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler32/Compile_Calc.cpp
r40 r46 658 658 if( VarType == DEF_OBJECT && VarRelativeVar.dwKind == VAR_REFLOCAL ){ 659 659 // 参照型オブジェクトへの代入(初期化)はポインタ変数と同様の処理に値する 660 VarType =PTR_LEVEL_UP( VarType );660 PTR_LEVEL_UP( VarType ); 661 661 662 662 VarRelativeVar.dwKind = VAR_LOCAL; … … 664 664 if( CalcType == DEF_OBJECT ){ 665 665 //右辺値が実体オブジェクトのときは、参照をコピー 666 CalcType = PTR_LEVEL_UP( DEF_OBJECT);666 PTR_LEVEL_UP( CalcType ); 667 667 } 668 668 }
Note:
See TracChangeset
for help on using the changeset viewer.