Ignore:
Timestamp:
Jun 24, 2007, 6:49:13 PM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/Const.cpp

    r103 r182  
    1818    char AreaName[VN_SIZE] = "";        //オブジェクト変数
    1919    char NestName[VN_SIZE] = "";        //入れ子メンバ
    20     bool isNest = SplitMemberName( fullName.c_str(), AreaName, NestName );
     20    bool isNest = CClass::SplitName( fullName.c_str(), AreaName, NestName );
    2121
    2222    return IsEqualSymbol( NamespaceScopes( AreaName ), NestName );
     
    180180    char ObjName[VN_SIZE];      //オブジェクト変数
    181181    char NestMember[VN_SIZE];   //入れ子メンバ
    182     bool isObjectMember = SplitMemberName( name.c_str(), ObjName, NestMember );
     182    bool isObjectMember = CClass::SplitName( name.c_str(), ObjName, NestMember );
    183183
    184184    //ハッシュ値を取得
Note: See TracChangeset for help on using the changeset viewer.