Changeset 803 in dev for branches/egtra/ab5.0/abdev/BasicCompiler_Common/hash.cpp
- Timestamp:
- Feb 11, 2011, 10:05:14 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/egtra/ab5.0/abdev/BasicCompiler_Common/hash.cpp
r598 r803 33 33 34 34 // ハッシュ値を取得 35 DllProc *pDllProc = compiler.GetObjectModule().meta.GetDllProcs().GetHashArrayElement( simpleName );36 while(pDllProc){35 foreach (auto pDllProc, compiler.GetObjectModule().meta.GetDllProcs().GetHashArrayElement(simpleName)) 36 { 37 37 if( pDllProc->IsEqualSymbol( LexicalAnalyzer::FullNameToSymbol( fullName ) ) ){ 38 38 return pDllProc; 39 39 } 40 41 pDllProc=pDllProc->GetChainNext();42 40 } 43 41
Note:
See TracChangeset
for help on using the changeset viewer.