Changeset 128 in dev for BasicCompiler_Common/VariableOpe.cpp
- Timestamp:
- May 18, 2007, 4:42:36 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler_Common/VariableOpe.cpp
r117 r128 1203 1203 } 1204 1204 1205 if( type.IsObject() ){ 1206 if( type.GetClass().IsBlittableType() ){ 1207 // Blittable型のときは基本型として扱う 1208 // ※ただし、コンパイル中のメソッドがBlittable型クラスに属していないこと 1209 if( UserProc::IsLocalAreaCompiling() 1210 && UserProc::CompilingUserProc().HasParentClass() 1211 && UserProc::CompilingUserProc().GetParentClass().IsBlittableType() ) 1212 { 1213 // コンパイル中のメソッドがBlittable型クラスに属している 1214 } 1215 else{ 1216 type = type.GetClass().GetBlittableType(); 1217 } 1218 } 1219 } 1220 1205 1221 if(dwFlags&DIMFLAG_STATIC){ 1206 1222 if( UserProc::IsGlobalAreaCompiling() ){
Note:
See TracChangeset
for help on using the changeset viewer.