Changes in src/Common/PassVisitor.impl.h [2b7bf59:b11d8e2]
- File:
-
- 1 edited
-
src/Common/PassVisitor.impl.h (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Common/PassVisitor.impl.h
r2b7bf59 rb11d8e2 321 321 maybeAccept ( node->init , *this ); 322 322 maybeAccept ( node->bitfieldWidth, *this ); 323 maybeAccept ( node->attributes , *this );324 323 325 324 if ( node->name != "" ) { … … 337 336 maybeMutateRef ( node->init , *this ); 338 337 maybeMutateRef ( node->bitfieldWidth, *this ); 339 maybeMutateRef ( node->attributes , *this );340 338 341 339 if ( node->name != "" ) { … … 360 358 maybeAccept( node->type, *this ); 361 359 maybeAccept( node->statements, *this ); 362 maybeAccept( node->attributes, *this );363 360 } 364 361 … … 378 375 maybeMutateRef( node->type, *this ); 379 376 maybeMutateRef( node->statements, *this ); 380 maybeMutateRef( node->attributes, *this );381 377 } 382 378 … … 1988 1984 } 1989 1985 1990 template< typename pass_type >1991 void PassVisitor< pass_type >::visit( Attribute * node ) {1992 VISIT_BODY( node );1993 }1994 1995 1986 //--------------------------------------------------------------------------------------------------------------- 1996 1987 template< typename pass_type > … … 2078 2069 MUTATE_BODY( Constant, node ); 2079 2070 } 2080 2081 template< typename pass_type >2082 Attribute * PassVisitor< pass_type >::mutate( Attribute * node ) {2083 MUTATE_BODY( Attribute, node );2084 }
Note:
See TracChangeset
for help on using the changeset viewer.