Changes in src/GenPoly/GenPoly.cc [93c10de:4da152a]
- File:
-
- 1 edited
-
src/GenPoly/GenPoly.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/GenPoly/GenPoly.cc
r93c10de r4da152a 783 783 const ast::FunctionType * function = getFunctionType( expr->func->result ); 784 784 assertf( function, "ApplicationExpr has non-function type: %s", toString( expr->func->result ).c_str() ); 785 TypeVarMap exprTyVars = { ast::TypeD ata() };785 TypeVarMap exprTyVars = { ast::TypeDecl::Data() }; 786 786 makeTypeVarMap( function, exprTyVars ); 787 787 return needsBoxing( param, arg, exprTyVars, subst ); … … 793 793 794 794 void addToTypeVarMap( const ast::TypeInstType * type, TypeVarMap & typeVars ) { 795 typeVars.insert( *type, ast::TypeD ata( type->base ) );795 typeVars.insert( *type, ast::TypeDecl::Data( type->base ) ); 796 796 } 797 797
Note:
See TracChangeset
for help on using the changeset viewer.