Changeset 113 in dev for BasicCompiler_Common/Subroutine.cpp
- Timestamp:
- May 10, 2007, 12:27:41 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler_Common/Subroutine.cpp
r112 r113 441 441 extern DllProc **ppDeclareHash; 442 442 if(ppDeclareHash[key]){ 443 DllProc *pTempProc; 444 pTempProc=ppDeclareHash[key]; 443 DllProc *pTempProc = ppDeclareHash[key]; 445 444 while(1){ 446 if( p DllProc->GetName() == pTempProc->GetName() ){445 if( pTempProc->IsEqualSymbol( pDllProc->GetNamespaceScopes(), pDllProc->GetName() ) ){ 447 446 //重複エラー 448 447 SetError(15,procName,nowLine);
Note:
See TracChangeset
for help on using the changeset viewer.