Changeset 712348a for src/Common


Ignore:
Timestamp:
May 13, 2019, 5:10:04 PM (6 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
6d51bd7
Parents:
768b3b4f
Message:

Removed all traces of SubRange? which didn't actually exist and made some more fields public

Location:
src/Common
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified src/Common/PassVisitor.h

    r768b3b4f r712348a  
    155155        virtual void visit( ConstructorInit * ctorInit ) override final;
    156156
    157         virtual void visit( Subrange * subrange ) override final;
    158 
    159157        virtual void visit( Constant * constant ) override final;
    160158
     
    257255        virtual Initializer * mutate( ConstructorInit * ctorInit ) override final;
    258256
    259         virtual Subrange * mutate( Subrange * subrange ) override final;
    260 
    261257        virtual Constant * mutate( Constant * constant ) override final;
    262258
  • TabularUnified src/Common/PassVisitor.impl.h

    r768b3b4f r712348a  
    27122712
    27132713//--------------------------------------------------------------------------
    2714 // Subrange
    2715 template< typename pass_type >
    2716 void PassVisitor< pass_type >::visit( Subrange * node ) {
    2717         VISIT_START( node );
    2718 
    2719         VISIT_END( node );
    2720 }
    2721 
    2722 template< typename pass_type >
    2723 Subrange * PassVisitor< pass_type >::mutate( Subrange * node  )  {
    2724         MUTATE_START( node );
    2725 
    2726         MUTATE_END( Subrange, node );
    2727 }
    2728 
    2729 //--------------------------------------------------------------------------
    27302714// Attribute
    27312715template< typename pass_type >
Note: See TracChangeset for help on using the changeset viewer.