Ignore:
Timestamp:
May 13, 2007, 8:50:04 AM (17 years ago)
Author:
dai_9181
Message:

Parameter::Equals静的メソッドを廃止し、Parameters::Equalsメソッドを用意。
ポインタに要するサイズよりも一回り大きなアラインメントが指定されているときに、呼び出し側のオフセットズレを考慮するよう、修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BasicCompiler_Common/Subroutine.cpp

    r113 r120  
    622622                //重複エラーチェックを行う
    623623                if( pUserProc->IsEqualSymbol( *psi2 ) ){
    624                     if( Parameter::Equals( psi2->Params(), pUserProc->Params() ) ){
     624                    if( psi2->Params().Equals( pUserProc->Params() ) ){
    625625                        SetError(15,pUserProc->GetName().c_str(),nowLine);
    626626                        return 0;
Note: See TracChangeset for help on using the changeset viewer.