Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Statement.cc

    rcc32d83 ree3c93d  
    243243}
    244244
    245 WhileStmt::WhileStmt( Expression *condition, Statement *body, bool isDoWhile ):
    246         Statement(), condition( condition), body( body), isDoWhile( isDoWhile) {
     245WhileStmt::WhileStmt( Expression *condition, Statement *body, std::list< Statement * > & initialization, bool isDoWhile ):
     246        Statement(), condition( condition), body( body), initialization( initialization ), isDoWhile( isDoWhile) {
    247247}
    248248
Note: See TracChangeset for help on using the changeset viewer.