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