Changeset 326 in dev for trunk/abdev/BasicCompiler_Common
- Timestamp:
- Sep 25, 2007, 12:26:53 PM (17 years ago)
- Location:
- trunk/abdev/BasicCompiler_Common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/include/Procedure.h
r277 r326 210 210 virtual bool IsDuplication( const UserProc *pUserProc ) const 211 211 { 212 if( this->GetParentClassPtr() == pUserProc->GetParentClassPtr() 213 && pUserProc->IsEqualSymbol( *this ) 214 && this->Params().Equals( pUserProc->Params() ) ) 212 if( this->GetParentClassPtr() == pUserProc->GetParentClassPtr() // 親クラスが等しい 213 && pUserProc->IsEqualSymbol( *this ) // 名前空間及び名前が等しい 214 && this->Params().Equals( pUserProc->Params() ) // パラメータが等しい 215 && this->returnType.Equals( pUserProc->returnType ) ) // 戻り値が等しい 215 216 { 216 217 return true; -
trunk/abdev/BasicCompiler_Common/src/Class.cpp
r325 r326 500 500 501 501 if( pMethod->GetUserProc().GetName() == temporary ){ 502 if( pMethod->GetUserProc().Params().Equals( pUserProc->Params() ) ){ 503 //関数名、パラメータ属性が合致したとき 502 if( pMethod->GetUserProc().Params().Equals( pUserProc->Params() ) 503 && pMethod->GetUserProc().ReturnType().Equals( pUserProc->ReturnType() ) ) 504 { 505 //関数名、パラメータ、戻り値が合致したとき 504 506 SetError(15,pUserProc->GetName().c_str(),nowLine); 505 507 return; … … 514 516 BOOST_FOREACH( CMethod *pMethod, pobj_c->GetMethods() ){ 515 517 if( pMethod->GetUserProc().GetName() == temporary ){ 516 if( pMethod->GetUserProc().Params().Equals( pUserProc->Params() ) ) 518 if( pMethod->GetUserProc().Params().Equals( pUserProc->Params() ) 519 && pMethod->GetUserProc().ReturnType().Equals( pUserProc->ReturnType() ) ) 517 520 { 518 521 //メンバ関数を上書き
Note:
See TracChangeset
for help on using the changeset viewer.