Changeset 777ed2b for src/Common/PassVisitor.h
- Timestamp:
- Jul 11, 2018, 11:55:59 AM (7 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, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- 0fc52b6
- Parents:
- fc20514 (diff), 7de22b28 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
src/Common/PassVisitor.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Common/PassVisitor.h
rfc20514 r777ed2b 133 133 virtual void visit( ArrayType * arrayType ) override final; 134 134 virtual void visit( ReferenceType * referenceType ) override final; 135 virtual void visit( QualifiedType * qualType ) override final; 135 136 virtual void visit( FunctionType * functionType ) override final; 136 137 virtual void visit( StructInstType * aggregateUseType ) override final; … … 145 146 virtual void visit( ZeroType * zeroType ) override final; 146 147 virtual void visit( OneType * oneType ) override final; 148 virtual void visit( GlobalScopeType * globalType ) override final; 147 149 148 150 virtual void visit( Designation * designation ) override final; … … 233 235 virtual Type * mutate( ArrayType * arrayType ) override final; 234 236 virtual Type * mutate( ReferenceType * referenceType ) override final; 237 virtual Type * mutate( QualifiedType * qualType ) override final; 235 238 virtual Type * mutate( FunctionType * functionType ) override final; 236 239 virtual Type * mutate( StructInstType * aggregateUseType ) override final; … … 245 248 virtual Type * mutate( ZeroType * zeroType ) override final; 246 249 virtual Type * mutate( OneType * oneType ) override final; 250 virtual Type * mutate( GlobalScopeType * globalType ) override final; 247 251 248 252 virtual Designation * mutate( Designation * designation ) override final;
Note:
See TracChangeset
for help on using the changeset viewer.