Changeset 509 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/hash.cpp
- Timestamp:
- Apr 29, 2008, 12:27:10 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/hash.cpp
r485 r509 10 10 #include "../compiler_x86/opcode.h" 11 11 #endif 12 13 using namespace ActiveBasic::Compiler; 12 14 13 15 int hash_default(const char *name){ … … 33 35 DllProc *pDllProc = compiler.GetObjectModule().meta.GetDllProcs().GetHashArrayElement( simpleName ); 34 36 while(pDllProc){ 35 if( pDllProc->IsEqualSymbol( fullName) ){37 if( pDllProc->IsEqualSymbol( LexicalAnalyzer::FullNameToSymbol( fullName ) ) ){ 36 38 return pDllProc; 37 39 }
Note:
See TracChangeset
for help on using the changeset viewer.