Changeset acd738aa for src/Common
- Timestamp:
- Jun 2, 2017, 11:23:21 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, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 6b72040
- Parents:
- 9c1600c (diff), 49c9773 (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
Legend:
- Unmodified
- Added
- Removed
-
src/Common/PassVisitor.h
r9c1600c racd738aa 26 26 27 27 template< typename... Args > 28 PassVisitor(Args &&... args) 28 PassVisitor(Args &&... args) 29 29 : pass( std::forward<Args>( args )... ) 30 30 {} 31 31 32 32 virtual ~PassVisitor() = default; 33 private: 33 34 34 pass_type pass; 35 36 public:37 35 38 36 virtual void visit( ObjectDecl *objectDecl ) override final;
Note: See TracChangeset
for help on using the changeset viewer.