Changes in src/SynTree/Visitor.cc [2a4b088:47534159]
- File:
-
- 1 edited
-
src/SynTree/Visitor.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Visitor.cc
r2a4b088 r47534159 219 219 } 220 220 221 void Visitor::visit( UntypedOffsetofExpr *offsetofExpr ) {222 acceptAll( offsetofExpr->get_results(), *this );223 maybeAccept( offsetofExpr->get_type(), *this );224 }225 226 void Visitor::visit( OffsetofExpr *offsetofExpr ) {227 acceptAll( offsetofExpr->get_results(), *this );228 maybeAccept( offsetofExpr->get_type(), *this );229 maybeAccept( offsetofExpr->get_member(), *this );230 }231 232 221 void Visitor::visit( AttrExpr *attrExpr ) { 233 222 acceptAll( attrExpr->get_results(), *this );
Note:
See TracChangeset
for help on using the changeset viewer.