Changeset 183 in dev for trunk/abdev/BasicCompiler32/Compile_Func.cpp
- Timestamp:
- Jun 24, 2007, 6:50:40 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler32/Compile_Func.cpp
r159 r183 1 #include <jenga/include/smoothie/Smoothie.h> 2 1 3 #include "../BasicCompiler_Common/common.h" 2 4 #include "Opcode.h" … … 176 178 tempParm=temp2; 177 179 178 type.SetType( DEF_OBJECT, pobj_DBClass->GetStringClassPtr() );180 type.SetType( DEF_OBJECT, Smoothie::GetMeta().GetClasses().GetStringClassPtr() ); 179 181 } 180 182 … … 228 230 229 231 //オーバーロードを解決 230 pUserProc=OverloadSolution(name,subs,Smoothie:: meta.procPointers[ProcPtr_BaseIndex]->Params(), Type() );232 pUserProc=OverloadSolution(name,subs,Smoothie::GetMeta().GetProcPointers()[ProcPtr_BaseIndex]->Params(), Type() ); 231 233 232 234 if(!pUserProc){ … … 280 282 SetThisPtrToReg(REG_RCX); 281 283 282 pobj_c= pobj_CompilingClass;284 pobj_c=Smoothie::Temp::pCompilingClass; 283 285 } 284 286
Note:
See TracChangeset
for help on using the changeset viewer.