Ignore:
Timestamp:
Jan 2, 2008, 12:50:34 AM (16 years ago)
Author:
dai_9181
Message:

ジェネリクスインターフェイス実装時のオーバーロード解決ロジックを改良。(型パラメータを戻り値に持つメソッドのオーバーロードをミスしてしまうバグを修正)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/include/Method.h

    r353 r382  
    230230    void AddStatic(UserProc *pUserProc,Prototype::Accessibility accessibility);
    231231
    232     // オーバーライドのための検索
    233     CMethod *FindForOverride( const UserProc *pUserProc );
     232    /*!
     233    @brief  オーバーライドのための検索
     234    @param  actualTypeParametersForThisMethods thisオブジェクトで保有するメソッド群を対象とした実型パラメータ
     235            pUserProc 照らし合わせる関数
     236    */
     237    CMethod *FindForOverride( const Types &actualTypeParametersForThisMethods, const UserProc *pUserProc );
    234238
    235239    const CMethod *GetMethodPtr( const UserProc *pUserProc ) const;
Note: See TracChangeset for help on using the changeset viewer.