Changes in src/InitTweak/FixInitNew.cpp [9e23b446:8060b2b]
- File:
-
- 1 edited
-
src/InitTweak/FixInitNew.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/InitTweak/FixInitNew.cpp
r9e23b446 r8060b2b 73 73 /// wrap function application expressions as ImplicitCopyCtorExpr nodes so that it is easy to identify which 74 74 /// function calls need their parameters to be copy constructed 75 struct InsertImplicitCalls : public ast::With ShortCircuiting {75 struct InsertImplicitCalls : public ast::WithConstTypeSubstitution, public ast::WithShortCircuiting { 76 76 const ast::Expr * postvisit( const ast::ApplicationExpr * appExpr ); 77 77 … … 457 457 // is needed to obtain the type of temporary variables so that copy 458 458 // constructor calls can be resolved. 459 assert( typeSubs ); 459 460 expr->env = tmp; 460 461 return expr;
Note:
See TracChangeset
for help on using the changeset viewer.