Changeset 87 in dev for BasicCompiler_Common/Type.cpp


Ignore:
Timestamp:
Apr 1, 2007, 2:28:03 AM (17 years ago)
Author:
dai_9181
Message:

House::Metaを追加。
Source.h/Source.cppを追加(実装はこれから)。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BasicCompiler_Common/Type.cpp

    r78 r87  
    8989    // TypeDefされた型
    9090    ////////////////////
    91     int i=House::typeDefs.GetIndex( typeName.c_str() );
     91    int i=House::Meta::typeDefs.GetIndex( typeName.c_str() );
    9292    if(i!=-1){
    93         type = House::typeDefs[i].GetBaseType();
     93        type = House::Meta::typeDefs[i].GetBaseType();
    9494        return true;
    9595    }
     
    463463        }
    464464        else{
    465             if( House::procPointers[index]->ReturnType().IsNull() ){
     465            if( House::Meta::procPointers[index]->ReturnType().IsNull() ){
    466466                return "*Sub";
    467467            }
Note: See TracChangeset for help on using the changeset viewer.