Changeset 7ff3e522 for src/AST/TypeSubstitution.hpp
- Timestamp:
- Aug 12, 2020, 10:31:58 AM (3 years ago)
- Branches:
- arm-eh, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- f8d05ee
- Parents:
- 343d10e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/TypeSubstitution.hpp
r343d10e r7ff3e522 99 99 void initialize( const TypeSubstitution &src, TypeSubstitution &dest ); 100 100 101 template<typename pass_type>101 template<typename core_t> 102 102 friend class Pass; 103 103 … … 188 188 Pass<Substituter> sub( *this, false ); 189 189 input = strict_dynamic_cast< const SynTreeClass * >( deepCopy(input)->accept( sub ) ); 190 return { input, sub. pass.subCount };190 return { input, sub.core.subCount }; 191 191 } 192 192 … … 196 196 Pass<Substituter> sub( *this, true ); 197 197 input = strict_dynamic_cast< const SynTreeClass * >( input->accept( sub ) ); 198 return { input, sub. pass.subCount };198 return { input, sub.core.subCount }; 199 199 } 200 200
Note: See TracChangeset
for help on using the changeset viewer.