Changeset 129 in dev for BasicCompiler64/NumOpe.cpp
- Timestamp:
- Jun 2, 2007, 12:09:08 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler64/NumOpe.cpp
r128 r129 717 717 //型名 718 718 if( Type::StringToType( term, resultType ) ){ 719 720 if( resultType.IsObject() ){721 if( resultType.GetClass().IsBlittableType() ){722 // Blittable型のときは基本型として扱う723 // ※ただし、コンパイル中のメソッドがBlittable型クラスに属していないこと724 if( UserProc::IsLocalAreaCompiling()725 && UserProc::CompilingUserProc().HasParentClass()726 && UserProc::CompilingUserProc().GetParentClass().IsBlittableType() )727 {728 // コンパイル中のメソッドがBlittable型クラスに属している729 }730 else{731 resultType = resultType.GetClass().GetBlittableType();732 }733 }734 }735 736 719 resultType.SetBasicType( resultType.GetBasicType() | FLAG_CAST ); 737 720 }
Note:
See TracChangeset
for help on using the changeset viewer.