Changes in src/InitTweak/GenInit.cc [7b6ca2e:4eb31f2b]
- File:
-
- 1 edited
-
src/InitTweak/GenInit.cc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/InitTweak/GenInit.cc
r7b6ca2e r4eb31f2b 44 44 } 45 45 46 class ReturnFixer {46 class ReturnFixer : public WithStmtsToAdd, public WithScopes { 47 47 public: 48 48 /// consistently allocates a temporary variable for the return value … … 53 53 void premutate( FunctionDecl *functionDecl ); 54 54 void premutate( ReturnStmt * returnStmt ); 55 56 at_cleanup_t at_cleanup;57 std::list< Statement * > stmtsToAddBefore;58 55 59 56 protected: … … 160 157 161 158 void ReturnFixer::premutate( FunctionDecl *functionDecl ) { 162 GuardValue( this,ftype );163 GuardValue( this,funcName );159 GuardValue( ftype ); 160 GuardValue( funcName ); 164 161 165 162 ftype = functionDecl->get_functionType();
Note:
See TracChangeset
for help on using the changeset viewer.