Changeset 2d6add4 for src/AST


Ignore:
Timestamp:
Sep 26, 2024, 3:54:26 PM (5 weeks ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
master
Children:
86841ee
Parents:
62afe08
Message:

Fixed a bad initialization in ForeachStmt?. Seems to have been there in some form for some time.

Location:
src/AST
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Decl.hpp

    r62afe08 r2d6add4  
    119119enum ArgumentFlag { FixedArgs, VariableArgs };
    120120
    121 /// Object declaration `int foo()`
     121/// Function declaration `int foo()`
    122122class FunctionDecl final : public DeclWithType {
    123123public:
  • src/AST/Stmt.hpp

    r62afe08 r2d6add4  
    269269
    270270        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 = {} )
    272273                : Stmt(loc, std::move(labels)), inits(std::move(inits)), range(range_over),
    273274                body(body), else_(else_), isIncreasing(isInc) {}
Note: See TracChangeset for help on using the changeset viewer.