Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Common/PassVisitor.impl.h

    rb11d8e2 r33a25f9  
    19261926}
    19271927
    1928 template< typename pass_type >
    1929 void PassVisitor< pass_type >::visit( Designation * node ) {
    1930         VISIT_START( node );
    1931 
    1932         maybeAccept( node->get_designators(), *this );
    1933 
    1934         VISIT_END( node );
    1935 }
    1936 
    1937 template< typename pass_type >
    1938 Designation * PassVisitor< pass_type >::mutate( Designation * node ) {
    1939         MUTATE_START( node );
    1940 
    1941         maybeMutateRef( node->get_designators(), *this );
    1942 
    1943         MUTATE_END( Designation, node );
    1944 }
    1945 
    19461928//--------------------------------------------------------------------------
    19471929// SingleInit
Note: See TracChangeset for help on using the changeset viewer.