Changes in src/Common/PassVisitor.h [aff3af4:134322e]
- File:
-
- 1 edited
-
src/Common/PassVisitor.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Common/PassVisitor.h
raff3af4 r134322e 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 33 private: 34 34 pass_type pass; 35 36 public: 35 37 36 38 virtual void visit( ObjectDecl *objectDecl ) override final;
Note:
See TracChangeset
for help on using the changeset viewer.