Changeset 193 in dev for trunk/abdev/BasicCompiler32/Compile_Func.cpp
- Timestamp:
- Jun 26, 2007, 5:04:50 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler32/Compile_Func.cpp
r183 r193 1 1 #include <jenga/include/smoothie/Smoothie.h> 2 3 #include <Compiler.h> 2 4 3 5 #include "../BasicCompiler_Common/common.h" … … 178 180 tempParm=temp2; 179 181 180 type.SetType( DEF_OBJECT, Smoothie::GetMeta().GetClasses().GetStringClassPtr() );182 type.SetType( DEF_OBJECT, compiler.GetMeta().GetClasses().GetStringClassPtr() ); 181 183 } 182 184 … … 230 232 231 233 //オーバーロードを解決 232 pUserProc=OverloadSolution(name,subs, Smoothie::GetMeta().GetProcPointers()[ProcPtr_BaseIndex]->Params(), Type() );234 pUserProc=OverloadSolution(name,subs,compiler.GetMeta().GetProcPointers()[ProcPtr_BaseIndex]->Params(), Type() ); 233 235 234 236 if(!pUserProc){ … … 318 320 void Opcode_Func_SizeOf( const string &typeName ){ 319 321 Type tempType; 320 if( ! Type::StringToType( typeName, tempType ) ){322 if( !Compiler::StringToType( typeName, tempType ) ){ 321 323 SetError(3,typeName,cp); 322 324 return;
Note:
See TracChangeset
for help on using the changeset viewer.