Changes in src/SymTab/Indexer.cc [24670d2:1ba88a0]
- File:
-
- 1 edited
-
src/SymTab/Indexer.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/SymTab/Indexer.cc
r24670d2 r1ba88a0 145 145 std::list< DeclarationWithType * > params = function->get_functionType()->get_parameters(); 146 146 assert( ! params.empty() ); 147 // use base type of pointer, so that qualifiers on the pointer type aren't considered. 148 Type * base = safe_dynamic_cast< PointerType * >( params.front()->get_type() )->get_base(); 149 funcMap[ Mangler::mangle( base ) ] += function; 147 funcMap[ Mangler::mangle( params.front()->get_type() ) ] += function; 150 148 } else { 151 149 out.push_back( decl );
Note:
See TracChangeset
for help on using the changeset viewer.