Changes in src/AST/SymbolTable.cpp [954c954:98e8b3b]
- File:
-
- 1 edited
-
src/AST/SymbolTable.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/SymbolTable.cpp
r954c954 r98e8b3b 335 335 } 336 336 337 /*338 337 void SymbolTable::addFunctionType( const FunctionType * ftype ) { 339 338 addTypes( ftype->forall ); … … 341 340 addIds( ftype->params ); 342 341 } 343 */344 342 345 343 void SymbolTable::lazyInitScope() { … … 370 368 assert( ! params.empty() ); 371 369 // use base type of pointer, so that qualifiers on the pointer type aren't considered. 372 const Type * base = InitTweak::getPointerBase( params.front() );370 const Type * base = InitTweak::getPointerBase( params.front()->get_type() ); 373 371 assert( base ); 374 372 return Mangle::mangle( base );
Note:
See TracChangeset
for help on using the changeset viewer.