Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Stmt.hpp

    r491bb81 rf6e6a55  
    5858        // cannot be, they are sub-types of this type, for organization.
    5959
    60         StmtClause( const CodeLocation & loc )
     60    StmtClause( const CodeLocation & loc )
    6161                : ParseNode(loc) {}
    6262
     
    396396class WaitForClause final : public StmtClause {
    397397  public:
    398         ptr<Expr> target_func;
    399         std::vector<ptr<Expr>> target_args;
    400         ptr<Stmt> stmt;
    401         ptr<Expr> cond;
    402 
    403         WaitForClause( const CodeLocation & loc )
     398    ptr<Expr> target_func;
     399    std::vector<ptr<Expr>> target_args;
     400    ptr<Stmt> stmt;
     401    ptr<Expr> cond;
     402
     403    WaitForClause( const CodeLocation & loc )
    404404                : StmtClause( loc ) {}
    405405
    406406        const WaitForClause * accept( Visitor & v ) const override { return v.visit( this ); }
    407407  private:
    408         WaitForClause * clone() const override { return new WaitForClause{ *this }; }
    409         MUTATE_FRIEND
     408    WaitForClause * clone() const override { return new WaitForClause{ *this }; }
     409    MUTATE_FRIEND
    410410};
    411411
Note: See TracChangeset for help on using the changeset viewer.