Changeset 101 in dev for BasicCompiler_Common/Subroutine.cpp
- Timestamp:
- Apr 25, 2007, 4:19:28 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler_Common/Subroutine.cpp
r100 r101 618 618 if(pobj_c==psi2->GetParentClassPtr()){ 619 619 //重複エラーチェックを行う 620 if( pUserProc-> GetName() == psi2->GetName() ){620 if( pUserProc->IsEqualSymbol( *psi2 ) ){ 621 621 if( Parameter::Equals( psi2->Params(), pUserProc->Params() ) ){ 622 622 SetError(15,pUserProc->GetName().c_str(),nowLine); … … 661 661 662 662 // 名前空間管理 663 NamespaceScopes namespaceScopes; 663 NamespaceScopes &namespaceScopes = Smoothie::Lexical::liveingNamespaceScopes; 664 namespaceScopes.clear(); 664 665 665 666 i=-1;
Note:
See TracChangeset
for help on using the changeset viewer.