Changeset 10a9479d for src/InitTweak/FixInit.cpp
- Timestamp:
- Nov 23, 2024, 8:28:37 PM (11 months ago)
- Branches:
- master
- Children:
- 956b389
- Parents:
- b006c51e (diff), de7b7a5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/InitTweak/FixInit.cpp
rb006c51e r10a9479d 105 105 /// generate/resolve copy construction expressions for each, and generate/resolve destructors for both 106 106 /// arguments and return value temporaries 107 struct ResolveCopyCtors final : public ast::WithGuards, public ast::WithStmtsToAdd <>, public ast::WithSymbolTable, public ast::WithShortCircuiting, public ast::WithVisitorRef<ResolveCopyCtors>, public ast::WithConstTranslationUnit {107 struct ResolveCopyCtors final : public ast::WithGuards, public ast::WithStmtsToAdd, public ast::WithSymbolTable, public ast::WithShortCircuiting, public ast::WithVisitorRef<ResolveCopyCtors>, public ast::WithConstTranslationUnit { 108 108 const ast::Expr * postvisit( const ast::ImplicitCopyCtorExpr * impCpCtorExpr ); 109 109 const ast::StmtExpr * previsit( const ast::StmtExpr * stmtExpr ); … … 177 177 /// insert destructor calls at the appropriate places. must happen before CtorInit nodes are removed 178 178 /// (currently by FixInit) 179 struct InsertDtors final : public ObjDeclCollector, public ast::WithStmtsToAdd <>{179 struct InsertDtors final : public ObjDeclCollector, public ast::WithStmtsToAdd { 180 180 InsertDtors( ast::Pass<LabelFinder> & finder ) : finder( finder ), labelVars( finder.core.vars ) {} 181 181 … … 194 194 195 195 /// expand each object declaration to use its constructor after it is declared. 196 struct FixInit : public ast::WithStmtsToAdd <>{196 struct FixInit : public ast::WithStmtsToAdd { 197 197 static void fixInitializers( ast::TranslationUnit &translationUnit ); 198 198 … … 230 230 231 231 /// expands ConstructorExpr nodes into comma expressions, using a temporary for the first argument 232 struct FixCtorExprs final : public ast::WithDeclsToAdd <>, public ast::WithSymbolTable, public ast::WithShortCircuiting, public ast::WithConstTranslationUnit {232 struct FixCtorExprs final : public ast::WithDeclsToAdd, public ast::WithSymbolTable, public ast::WithShortCircuiting, public ast::WithConstTranslationUnit { 233 233 const ast::Expr * postvisit( const ast::ConstructorExpr * ctorExpr ); 234 234 };
Note:
See TracChangeset
for help on using the changeset viewer.