Changes in src/Common/PassVisitor.impl.h [a5f0529:62423350]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Common/PassVisitor.impl.h
ra5f0529 r62423350 1 1 #pragma once 2 // IWYU pragma: private, include "PassVisitor.h"3 2 4 3 #define VISIT_START( node ) \ … … 607 606 608 607 template< typename pass_type > 609 void PassVisitor< pass_type >::visit( VirtualCastExpr * node ) {610 VISIT_BODY( node );611 }612 613 template< typename pass_type >614 608 void PassVisitor< pass_type >::visit( AddressExpr * node ) { 615 609 VISIT_BODY( node ); … … 984 978 985 979 template< typename pass_type > 986 Expression * PassVisitor< pass_type >::mutate( VirtualCastExpr * node ) {987 MUTATE_BODY( Expression, node );988 }989 990 template< typename pass_type >991 980 Expression * PassVisitor< pass_type >::mutate( UntypedMemberExpr * node ) { 992 981 MUTATE_BODY( Expression, node );
Note:
See TracChangeset
for help on using the changeset viewer.