Ignore:
Timestamp:
Jul 13, 2007, 2:49:56 AM (17 years ago)
Author:
dai_9181
Message:

UserProc/DllProc/ProcPointerクラスをSymbolクラスからの派生にした

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/src/Symbol.cpp

    r206 r208  
    5252    return false;
    5353}
    54 bool Symbol::IsEqualSymbol( const string &fullName ) const
     54bool Symbol::IsEqualSymbol( const char *fullName ) const
    5555{
    5656    char AreaName[VN_SIZE] = "";        //オブジェクト変数
    5757    char NestName[VN_SIZE] = "";        //入れ子メンバ
    58     bool isNest = SplitMemberName( fullName.c_str(), AreaName, NestName );
     58    bool isNest = SplitMemberName( fullName, AreaName, NestName );
    5959
    6060    if( IsEqualSymbol( NamespaceScopes( AreaName ), NestName ) ){
Note: See TracChangeset for help on using the changeset viewer.