Changeset 73 in dev for BasicCompiler32/Compile_Object.cpp
- Timestamp:
- Mar 16, 2007, 11:07:14 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler32/Compile_Object.cpp
r68 r73 31 31 //////////////////////// 32 32 33 std::vector<S UBINFO*> subs;33 std::vector<SubInfo *> subs; 34 34 pobj_c->EnumMethod( pobj_c->name, subs ); 35 35 36 S UBINFO*psi;36 SubInfo *psi; 37 37 if( subs.size() > 0 ){ 38 38 //オーバーロードを解決 … … 133 133 134 134 //call _System_GC_malloc_ForObject 135 extern S UBINFO*pSub_System_GC_malloc_ForObject;135 extern SubInfo *pSub_System_GC_malloc_ForObject; 136 136 op_call(pSub_System_GC_malloc_ForObject); 137 137 } … … 140 140 141 141 //call _System_GC_malloc_ForObjectPtr 142 extern S UBINFO*pSub_System_GC_malloc_ForObjectPtr;142 extern SubInfo *pSub_System_GC_malloc_ForObjectPtr; 143 143 op_call(pSub_System_GC_malloc_ForObjectPtr); 144 144 } … … 208 208 // コンストラクタの呼び出し 209 209 //////////////////////////// 210 211 if( lstrcmp(classObj.name,"proc")==0){212 int i=0;213 }214 210 215 211 BOOL bSomeObjects; … … 380 376 if( isSweeping ){ 381 377 //call _System_GC_free_for_SweepingDelete 382 extern S UBINFO*pSub_System_GC_free_for_SweepingDelete;378 extern SubInfo *pSub_System_GC_free_for_SweepingDelete; 383 379 op_call(pSub_System_GC_free_for_SweepingDelete); 384 380 } 385 381 else{ 386 382 //call free 387 extern S UBINFO*pSub_free;383 extern SubInfo *pSub_free; 388 384 op_call(pSub_free); 389 385 }
Note:
See TracChangeset
for help on using the changeset viewer.