Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Visitor.cc

    r145f1fc r843054c2  
    99// Author           : Richard C. Bilson
    1010// Created On       : Mon May 18 07:44:20 2015
    11 // Last Modified By : Rob Schluntz
    12 // Last Modified On : Tue Jul 14 12:31:03 2015
    13 // Update Count     : 3
     11// Last Modified By : Peter A. Buhr
     12// Last Modified On : Mon May 18 11:14:51 2015
     13// Update Count     : 2
    1414//
    1515
     
    9494
    9595void Visitor::visit( ForStmt *forStmt ) {
    96         acceptAll( forStmt->get_initialization(), *this );
     96        // ForStmt still needs to be fixed
     97        maybeAccept( forStmt->get_initialization(), *this );
    9798        maybeAccept( forStmt->get_condition(), *this );
    9899        maybeAccept( forStmt->get_increment(), *this );
Note: See TracChangeset for help on using the changeset viewer.