Ignore:
Timestamp:
Jul 13, 2017, 3:48:19 PM (6 years ago)
Author:
Rob Schluntz <rschlunt@…>
Branches:
aaron-thesis, arm-eh, 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
Message:

Add PassVisitor? implementation for ReferenceType?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Common/PassVisitor.h

    r65cec25 r6b9b047  
    113113        virtual void visit( PointerType *pointerType ) override final;
    114114        virtual void visit( ArrayType *arrayType ) override final;
     115        virtual void visit( ReferenceType *referenceType ) override final;
    115116        virtual void visit( FunctionType *functionType ) override final;
    116117        virtual void visit( StructInstType *aggregateUseType ) override final;
     
    198199        virtual Type* mutate( PointerType *pointerType ) override final;
    199200        virtual Type* mutate( ArrayType *arrayType ) override final;
     201        virtual Type* mutate( ReferenceType *referenceType ) override final;
    200202        virtual Type* mutate( FunctionType *functionType ) override final;
    201203        virtual Type* mutate( StructInstType *aggregateUseType ) override final;
Note: See TracChangeset for help on using the changeset viewer.