Ignore:
Timestamp:
Jun 27, 2007, 2:41:17 AM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler64/Compile_Func.cpp

    r183 r198  
    11#include <jenga/include/smoothie/Smoothie.h>
     2
     3#include <Compiler.h>
    24
    35#include "../BasicCompiler_Common/common.h"
     
    3234        tempParm=temp2;
    3335
    34         type.SetType( DEF_OBJECT, Smoothie::GetMeta().GetClasses().GetStringClassPtr() );
     36        type.SetType( DEF_OBJECT, compiler.GetMeta().GetClasses().GetStringClassPtr() );
    3537    }
    3638
     
    8082
    8183        //オーバーロードを解決
    82         pUserProc=OverloadSolution(name,subs,Smoothie::GetMeta().GetProcPointers()[ProcPtr_BaseIndex]->Params(), Type() );
     84        pUserProc=OverloadSolution(name,subs,compiler.GetMeta().GetProcPointers()[ProcPtr_BaseIndex]->Params(), Type() );
    8385
    8486        if(!pUserProc){
     
    165167void Opcode_Func_SizeOf( const string &typeName ){
    166168    Type tempType;
    167     if( !Type::StringToType( typeName, tempType ) ){
     169    if( !Compiler::StringToType( typeName, tempType ) ){
    168170        SetError(3,typeName,cp);
    169171        return;
Note: See TracChangeset for help on using the changeset viewer.