Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/TypeSubstitution.hpp

    r73f1b1c rd3aa64f  
    4646        template< typename SynTreeClass >
    4747        struct ApplyResult {
     48                // const SynTreeClass * node;
    4849                ast::ptr<SynTreeClass> node;
    4950                int count;
     
    186187        assert( input );
    187188        Pass<Substituter> sub( *this, false );
     189//      input = strict_dynamic_cast< const SynTreeClass * >( deepCopy(input)->accept( sub ) );
    188190        input = strict_dynamic_cast< const SynTreeClass * >( input->accept( sub ) );
    189191        return { input, sub.core.subCount };
     
    194196        assert( input );
    195197        Pass<Substituter> sub( *this, true );
     198//      input = strict_dynamic_cast< const SynTreeClass * >( deepCopy(input)->accept( sub ) );
    196199        input = strict_dynamic_cast< const SynTreeClass * >( input->accept( sub ) );
    197200        return { input, sub.core.subCount };
Note: See TracChangeset for help on using the changeset viewer.