- File:
-
- 1 edited
-
src/AST/GenericSubstitution.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/GenericSubstitution.cpp
r60aaa51d r98e8b3b 42 42 private: 43 43 // make substitution for generic type 44 void makeSub( const ReferenceToType * ty ) {44 void makeSub( const BaseInstType * ty ) { 45 45 visit_children = false; 46 46 const AggregateDecl * aggr = ty->aggr(); … … 62 62 Pass<GenericSubstitutionBuilder> builder; 63 63 maybe_accept( ty, builder ); 64 return std::move(builder. pass.sub);64 return std::move(builder.core.sub); 65 65 } 66 66
Note:
See TracChangeset
for help on using the changeset viewer.