Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Visitor.cc

    r4040425 r630a82a  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Mar  2 17:29:23 2016
    13 // Update Count     : 16
     12// Last Modified On : Fri Apr  1 18:05:13 2016
     13// Update Count     : 18
    1414//
    1515
     
    284284}
    285285
     286void Visitor::visit( CompoundLiteralExpr *compLitExpr ) {
     287        acceptAll( compLitExpr->get_results(), *this );
     288        maybeAccept( compLitExpr->get_type(), *this );
     289        maybeAccept( compLitExpr->get_initializer(), *this );
     290}
     291
    286292void Visitor::visit( VoidType *voidType ) {
    287293        acceptAll( voidType->get_forall(), *this );
Note: See TracChangeset for help on using the changeset viewer.