Ignore:
Timestamp:
Aug 12, 2020, 10:31:58 AM (4 years ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
f8d05ee
Parents:
343d10e
Message:

{pass_t Pass::pass; => core_t Pass::core;} To avoid confusion about which pass we are talking about.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/TypeSubstitution.hpp

    r343d10e r7ff3e522  
    9999        void initialize( const TypeSubstitution &src, TypeSubstitution &dest );
    100100
    101         template<typename pass_type>
     101        template<typename core_t>
    102102        friend class Pass;
    103103
     
    188188        Pass<Substituter> sub( *this, false );
    189189        input = strict_dynamic_cast< const SynTreeClass * >( deepCopy(input)->accept( sub ) );
    190         return { input, sub.pass.subCount };
     190        return { input, sub.core.subCount };
    191191}
    192192
     
    196196        Pass<Substituter> sub( *this, true );
    197197        input = strict_dynamic_cast< const SynTreeClass * >( input->accept( sub ) );
    198         return { input, sub.pass.subCount };
     198        return { input, sub.core.subCount };
    199199}
    200200
Note: See TracChangeset for help on using the changeset viewer.