Changes in src/Common/PassVisitor.impl.h [e874605:5408b59]
- File:
-
- 1 edited
-
src/Common/PassVisitor.impl.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Common/PassVisitor.impl.h
re874605 r5408b59 1047 1047 1048 1048 //-------------------------------------------------------------------------- 1049 // InlineValueDecl1050 template< typename pass_type >1051 void PassVisitor< pass_type >::visit( InlineValueDecl * node ) {1052 VISIT_START( node );1053 1054 maybeAccept_impl( node->type, *this );1055 1056 VISIT_END( node );1057 }1058 1059 template< typename pass_type >1060 void PassVisitor< pass_type >::visit( const InlineValueDecl * node ) {1061 VISIT_START( node );1062 1063 maybeAccept_impl( node->type, *this );1064 1065 VISIT_END( node );1066 }1067 1068 template< typename pass_type >1069 DeclarationWithType * PassVisitor< pass_type >::mutate( InlineValueDecl * node ) {1070 MUTATE_START( node );1071 1072 maybeMutate_impl( node->type, *this );1073 1074 MUTATE_END( DeclarationWithType, node );1075 }1076 1077 //--------------------------------------------------------------------------1078 1049 // CompoundStmt 1079 1050 template< typename pass_type >
Note:
See TracChangeset
for help on using the changeset viewer.