Changes in src/AST/Stmt.hpp [fca78f1:2d6add4]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Stmt.hpp
rfca78f1 r2d6add4 269 269 270 270 ForeachStmt( const CodeLocation & loc, const std::vector<ptr<Stmt>> && inits, 271 const Expr * range_over, RangeDirection isInc, const Stmt * body, const Stmt * else_ ) 271 const Expr * range_over, RangeDirection isInc, const Stmt * body, 272 const Stmt * else_, const std::vector<Label> && labels = {} ) 272 273 : Stmt(loc, std::move(labels)), inits(std::move(inits)), range(range_over), 273 274 body(body), else_(else_), isIncreasing(isInc) {}
Note: See TracChangeset
for help on using the changeset viewer.