Changeset 816 in dev for branches/egtra/ab5.0/abdev/BasicCompiler_Common/hash.cpp
- Timestamp:
- Mar 19, 2011, 9:13:12 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/egtra/ab5.0/abdev/BasicCompiler_Common/hash.cpp
r806 r816 22 22 /////////////////////////// 23 23 24 auto const s = LexicalAnalyzer::FullNameToSymbol( fullName ); 25 24 26 // ハッシュ値を取得 25 27 foreach (auto pDllProc, compiler.GetObjectModule().meta.GetDllProcs().GetHashArrayElement(simpleName)) 26 28 { 27 if( pDllProc->IsEqualSymbol( LexicalAnalyzer::FullNameToSymbol( fullName ) ) ){ 29 if( pDllProc->IsEqualSymbol( s ) ) 30 { 28 31 return pDllProc; 29 32 }
Note:
See TracChangeset
for help on using the changeset viewer.