Ignore:
Timestamp:
May 7, 2008, 11:52:29 AM (16 years ago)
Author:
dai_9181
Message:

UserProcs::Insertメソッドを排除。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/BasicCompiler_Common/src/Procedure.cpp

    r573 r574  
    9999
    100100
    101 bool UserProcs::Insert( UserProc *pUserProc, int nowLine )
    102 {
    103     /////////////////////////////////
    104     // ハッシュデータに追加
    105     /////////////////////////////////
    106 
    107     if( !Put( pUserProc ) )
    108     {
    109         // 重複しているため、失敗
    110         compiler.errorMessenger.Output(15,pUserProc->GetName().c_str(),nowLine);
    111         return false;
    112     }
    113 
    114     return true;
    115 }
    116 
    117101void UserProcs::EnumGlobalProcs( const char *simpleName, const char *localName, std::vector<const UserProc *> &subs )
    118102{
Note: See TracChangeset for help on using the changeset viewer.