Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Mutator.h

    r47534159 r7f5566b  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Thu Nov 19 22:26:16 2015
    13 // Update Count     : 8
     12// Last Modified On : Thu Jul 23 23:24:18 2015
     13// Update Count     : 7
    1414//
    1515#include <cassert>
     
    6464        virtual Expression* mutate( ConstantExpr *constantExpr );
    6565        virtual Expression* mutate( SizeofExpr *sizeofExpr );
    66         virtual Expression* mutate( AlignofExpr *alignofExpr );
    6766        virtual Expression* mutate( AttrExpr *attrExpr );
    6867        virtual Expression* mutate( LogicalExpr *logicalExpr );
     
    104103inline TreeType *maybeMutate( TreeType *tree, MutatorType &mutator ) {
    105104        if ( tree ) {
    106                 TreeType *newnode = dynamic_cast< TreeType * >( tree->acceptMutator( mutator ) );
     105                TreeType *newnode = dynamic_cast< TreeType* >( tree->acceptMutator( mutator ) );
    107106                assert( newnode );
    108107                return newnode;
Note: See TracChangeset for help on using the changeset viewer.