Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Visitor.cc

    r47534159 r2a4b088  
    219219}
    220220
     221void Visitor::visit( UntypedOffsetofExpr *offsetofExpr ) {
     222        acceptAll( offsetofExpr->get_results(), *this );
     223        maybeAccept( offsetofExpr->get_type(), *this );
     224}
     225
     226void Visitor::visit( OffsetofExpr *offsetofExpr ) {
     227        acceptAll( offsetofExpr->get_results(), *this );
     228        maybeAccept( offsetofExpr->get_type(), *this );
     229        maybeAccept( offsetofExpr->get_member(), *this );
     230}
     231
    221232void Visitor::visit( AttrExpr *attrExpr ) {
    222233        acceptAll( attrExpr->get_results(), *this );
Note: See TracChangeset for help on using the changeset viewer.