Changeset 198 in dev for trunk/abdev/BasicCompiler64/Compile_Func.cpp
- Timestamp:
- Jun 27, 2007, 2:41:17 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler64/Compile_Func.cpp
r183 r198 1 1 #include <jenga/include/smoothie/Smoothie.h> 2 3 #include <Compiler.h> 2 4 3 5 #include "../BasicCompiler_Common/common.h" … … 32 34 tempParm=temp2; 33 35 34 type.SetType( DEF_OBJECT, Smoothie::GetMeta().GetClasses().GetStringClassPtr() );36 type.SetType( DEF_OBJECT, compiler.GetMeta().GetClasses().GetStringClassPtr() ); 35 37 } 36 38 … … 80 82 81 83 //オーバーロードを解決 82 pUserProc=OverloadSolution(name,subs, Smoothie::GetMeta().GetProcPointers()[ProcPtr_BaseIndex]->Params(), Type() );84 pUserProc=OverloadSolution(name,subs,compiler.GetMeta().GetProcPointers()[ProcPtr_BaseIndex]->Params(), Type() ); 83 85 84 86 if(!pUserProc){ … … 165 167 void Opcode_Func_SizeOf( const string &typeName ){ 166 168 Type tempType; 167 if( ! Type::StringToType( typeName, tempType ) ){169 if( !Compiler::StringToType( typeName, tempType ) ){ 168 170 SetError(3,typeName,cp); 169 171 return;
Note:
See TracChangeset
for help on using the changeset viewer.