Changeset 6b9b047
- Timestamp:
- Jul 13, 2017, 3:48:19 PM (6 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 1d776fd
- Parents:
- 65cec25
- Location:
- src/Common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Common/PassVisitor.h
r65cec25 r6b9b047 113 113 virtual void visit( PointerType *pointerType ) override final; 114 114 virtual void visit( ArrayType *arrayType ) override final; 115 virtual void visit( ReferenceType *referenceType ) override final; 115 116 virtual void visit( FunctionType *functionType ) override final; 116 117 virtual void visit( StructInstType *aggregateUseType ) override final; … … 198 199 virtual Type* mutate( PointerType *pointerType ) override final; 199 200 virtual Type* mutate( ArrayType *arrayType ) override final; 201 virtual Type* mutate( ReferenceType *referenceType ) override final; 200 202 virtual Type* mutate( FunctionType *functionType ) override final; 201 203 virtual Type* mutate( StructInstType *aggregateUseType ) override final; -
src/Common/PassVisitor.impl.h
r65cec25 r6b9b047 786 786 787 787 template< typename pass_type > 788 void PassVisitor< pass_type >::visit( ReferenceType * node ) { 789 VISIT_BODY( node ); 790 } 791 792 template< typename pass_type > 788 793 void PassVisitor< pass_type >::visit( FunctionType * node ) { 789 794 VISIT_BODY( node ); … … 1118 1123 1119 1124 template< typename pass_type > 1125 Type * PassVisitor< pass_type >::mutate( ReferenceType * node ) { 1126 MUTATE_BODY( Type, node ); 1127 } 1128 1129 template< typename pass_type > 1120 1130 Type * PassVisitor< pass_type >::mutate( FunctionType * node ) { 1121 1131 MUTATE_BODY( Type, node );
Note: See TracChangeset
for help on using the changeset viewer.