Changes in src/Common/PassVisitor.impl.h [2d019af:6a45bd78]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Common/PassVisitor.impl.h
r2d019af r6a45bd78 973 973 974 974 //-------------------------------------------------------------------------- 975 // DirectiveDecl976 template< typename pass_type >977 void PassVisitor< pass_type >::visit( DirectiveDecl * node ) {978 VISIT_START( node );979 980 maybeAccept_impl( node->stmt, *this );981 982 VISIT_END( node );983 }984 985 template< typename pass_type >986 void PassVisitor< pass_type >::visit( const DirectiveDecl * node ) {987 VISIT_START( node );988 989 maybeAccept_impl( node->stmt, *this );990 991 VISIT_END( node );992 }993 994 template< typename pass_type >995 DirectiveDecl * PassVisitor< pass_type >::mutate( DirectiveDecl * node ) {996 MUTATE_START( node );997 998 maybeMutate_impl( node->stmt, *this );999 1000 MUTATE_END( DirectiveDecl, node );1001 }1002 1003 //--------------------------------------------------------------------------1004 975 // StaticAssertDecl 1005 976 template< typename pass_type >
Note:
See TracChangeset
for help on using the changeset viewer.