Ignore:
Timestamp:
Jan 2, 2008, 1:21:43 AM (17 years ago)
Author:
dai_9181
Message:

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

File:
1 edited

Legend:

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

    r382 r383  
    2020{
    2121    if( this->GetName() == pUserProc->GetName()                     // 名前空間及び名前が等しい
    22         && this->Params().Equals( pUserProc->Params() ) )           // パラメータが等しい
     22        && this->Params().Equals( actualTypeParametersForThisProc, pUserProc->Params() ) )          // パラメータが等しい
    2323    {
    2424        if( this->returnType.Equals( pUserProc->returnType ) )
Note: See TracChangeset for help on using the changeset viewer.