Changeset 120 in dev for BasicCompiler_Common/Class.cpp
- Timestamp:
- May 13, 2007, 8:50:04 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler_Common/Class.cpp
r117 r120 1089 1089 1090 1090 if( method->pUserProc->GetName() == temporary ){ 1091 if( Parameter::Equals( method->pUserProc->Params(),pUserProc->Params() ) ){1091 if( method->pUserProc->Params().Equals( pUserProc->Params() ) ){ 1092 1092 //関数名、パラメータ属性が合致したとき 1093 1093 SetError(15,pUserProc->GetName().c_str(),nowLine); … … 1103 1103 foreach( CMethod *method, pobj_c->methods ){ 1104 1104 if( method->pUserProc->GetName() == temporary ){ 1105 if( Parameter::Equals( method->pUserProc->Params(),pUserProc->Params() ) ){1105 if( method->pUserProc->Params().Equals( pUserProc->Params() ) ){ 1106 1106 1107 1107 if(method->bVirtual){
Note:
See TracChangeset
for help on using the changeset viewer.