Changes in src/SynTree/Mutator.cc [25a054f:d3b7937]
- File:
-
- 1 edited
-
src/SynTree/Mutator.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Mutator.cc
r25a054f rd3b7937 22 22 #include "Expression.h" 23 23 #include "Constant.h" 24 #include " utility.h"24 #include "Common/utility.h" 25 25 26 26 Mutator::Mutator() {} … … 259 259 } 260 260 return alignofExpr; 261 }262 263 Expression *Mutator::mutate( OffsetofExpr *offsetofExpr ) {264 mutateAll( offsetofExpr->get_results(), *this );265 offsetofExpr->set_type( maybeMutate( offsetofExpr->get_type(), *this ) );266 offsetofExpr->set_member( maybeMutate( offsetofExpr->get_member(), *this ) );267 return offsetofExpr;268 261 } 269 262
Note:
See TracChangeset
for help on using the changeset viewer.