Ignore:
Timestamp:
Jun 26, 2007, 5:04:50 AM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

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

    r183 r193  
    11#include <jenga/include/smoothie/Smoothie.h>
     2
     3#include <Compiler.h>
    24
    35#include "../BasicCompiler_Common/common.h"
     
    178180        tempParm=temp2;
    179181
    180         type.SetType( DEF_OBJECT, Smoothie::GetMeta().GetClasses().GetStringClassPtr() );
     182        type.SetType( DEF_OBJECT, compiler.GetMeta().GetClasses().GetStringClassPtr() );
    181183    }
    182184
     
    230232
    231233        //オーバーロードを解決
    232         pUserProc=OverloadSolution(name,subs,Smoothie::GetMeta().GetProcPointers()[ProcPtr_BaseIndex]->Params(), Type() );
     234        pUserProc=OverloadSolution(name,subs,compiler.GetMeta().GetProcPointers()[ProcPtr_BaseIndex]->Params(), Type() );
    233235
    234236        if(!pUserProc){
     
    318320void Opcode_Func_SizeOf( const string &typeName ){
    319321    Type tempType;
    320     if( !Type::StringToType( typeName, tempType ) ){
     322    if( !Compiler::StringToType( typeName, tempType ) ){
    321323        SetError(3,typeName,cp);
    322324        return;
Note: See TracChangeset for help on using the changeset viewer.