Changes in src/InitTweak/GenInit.cc [9ff56e7:d24d4e1]
- File:
-
- 1 edited
-
src/InitTweak/GenInit.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/InitTweak/GenInit.cc
r9ff56e7 rd24d4e1 71 71 // that need to be constructed or destructed 72 72 void previsit( StructDecl *aggregateDecl ); 73 void previsit( __attribute__((unused)) UnionDecl * aggregateDecl ) { visit_children = false; } 74 void previsit( __attribute__((unused)) EnumDecl * aggregateDecl ) { visit_children = false; } 75 void previsit( __attribute__((unused)) TraitDecl * aggregateDecl ) { visit_children = false; } 76 void previsit( __attribute__((unused)) TypeDecl * typeDecl ) { visit_children = false; } 77 void previsit( __attribute__((unused)) TypedefDecl * typeDecl ) { visit_children = false; } 78 void previsit( __attribute__((unused)) FunctionType * funcType ) { visit_children = false; } 73 void previsit( UnionDecl *aggregateDecl ) { visit_children = false; } 74 void previsit( EnumDecl *aggregateDecl ) { visit_children = false; } 75 void previsit( TraitDecl *aggregateDecl ) { visit_children = false; } 76 void previsit( TypeDecl *typeDecl ) { visit_children = false; } 77 void previsit( TypedefDecl *typeDecl ) { visit_children = false; } 78 79 void previsit( FunctionType *funcType ) { visit_children = false; } 79 80 80 81 void previsit( CompoundStmt * compoundStmt ); … … 335 336 } 336 337 337 void CtorDtor::previsit( __attribute__((unused))CompoundStmt * compoundStmt ) {338 void CtorDtor::previsit( CompoundStmt * compoundStmt ) { 338 339 GuardScope( managedTypes ); 339 340 }
Note:
See TracChangeset
for help on using the changeset viewer.