Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Visitor.cc

    r2a4b088 r47534159  
    219219}
    220220
    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 
    232221void Visitor::visit( AttrExpr *attrExpr ) {
    233222        acceptAll( attrExpr->get_results(), *this );
Note: See TracChangeset for help on using the changeset viewer.