Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/StatementNode.hpp

    r525f7ad rc92bdcc  
    6363struct ForCtrl {
    6464        ForCtrl( StatementNode * stmt, ExpressionNode * condition, ExpressionNode * change ) :
    65                 init( stmt ), condition( condition ), change( change ), range_over( nullptr ) {}
    66         ForCtrl( StatementNode * decl, ExpressionNode * _range_over) :
    67                 init( decl ), condition( nullptr ), change( nullptr ),  range_over( _range_over ) {}
     65                init( stmt ), condition( condition ), change( change ) {}
    6866
    6967        StatementNode * init;
    7068        ExpressionNode * condition;
    7169        ExpressionNode * change;
    72         ExpressionNode * range_over;
    7370};
    7471
Note: See TracChangeset for help on using the changeset viewer.