Changeset 576 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/src
- Timestamp:
- May 7, 2008, 12:17:40 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/src/Procedure.cpp
r575 r576 99 99 100 100 101 void UserProcs::EnumGlobalProcs( const char *simpleName, const char *localName, std::vector<const UserProc *> &subs )101 void UserProcs::EnumGlobalProcs( const char *simpleName, const Symbol &localSymbol, std::vector<const UserProc *> &subs ) 102 102 { 103 103 /////////////////////////// … … 109 109 while(pUserProc){ 110 110 if( pUserProc->IsGlobalProcedure() ){ 111 if( pUserProc->IsEqualSymbol( LexicalAnalyzer::FullNameToSymbol( localName )) ){111 if( pUserProc->IsEqualSymbol( localSymbol ) ){ 112 112 subs.push_back( pUserProc ); 113 113 }
Note:
See TracChangeset
for help on using the changeset viewer.