Ignore:
Timestamp:
Jun 1, 2017, 7:26:04 PM (7 years ago)
Author:
Rob Schluntz <rschlunt@…>
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:
b1d4d60
Parents:
676cc8c
Message:

convert FixInit? to PassVisitor?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Common/PassVisitor.h

    r676cc8c raff3af4  
    2626
    2727        template< typename... Args >
    28         PassVisitor(Args &&... args) 
     28        PassVisitor(Args &&... args)
    2929                : pass( std::forward<Args>( args )... )
    3030        {}
    3131
    3232        virtual ~PassVisitor() = default;
    33 private:
     33
    3434        pass_type pass;
    35 
    36 public:
    3735
    3836        virtual void visit( ObjectDecl *objectDecl ) override final;
Note: See TracChangeset for help on using the changeset viewer.