Changes in src/SynTree/Mutator.h [47534159:7f5566b]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Mutator.h
r47534159 r7f5566b 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu Nov 19 22:26:16201513 // Update Count : 812 // Last Modified On : Thu Jul 23 23:24:18 2015 13 // Update Count : 7 14 14 // 15 15 #include <cassert> … … 64 64 virtual Expression* mutate( ConstantExpr *constantExpr ); 65 65 virtual Expression* mutate( SizeofExpr *sizeofExpr ); 66 virtual Expression* mutate( AlignofExpr *alignofExpr );67 66 virtual Expression* mutate( AttrExpr *attrExpr ); 68 67 virtual Expression* mutate( LogicalExpr *logicalExpr ); … … 104 103 inline TreeType *maybeMutate( TreeType *tree, MutatorType &mutator ) { 105 104 if ( tree ) { 106 TreeType *newnode = dynamic_cast< TreeType 105 TreeType *newnode = dynamic_cast< TreeType* >( tree->acceptMutator( mutator ) ); 107 106 assert( newnode ); 108 107 return newnode;
Note:
See TracChangeset
for help on using the changeset viewer.