Changes in / [ba417e2:92a6e02]


Ignore:
Location:
src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Pass.impl.hpp

    rba417e2 r92a6e02  
    953953        // For now this isn't visited, it is unclear if this causes problem
    954954        // if all tests are known to pass, remove this code
    955         // VISIT(
    956         //      maybe_accept( node, &ImplicitCtorDtorStmt::callStmt );
    957         // )
     955        VISIT(
     956                maybe_accept( node, &ImplicitCtorDtorStmt::callStmt );
     957        )
    958958
    959959        VISIT_END( Stmt, node );
  • src/AST/Stmt.hpp

    rba417e2 r92a6e02  
    399399class ImplicitCtorDtorStmt final : public Stmt {
    400400public:
    401         readonly<Stmt> callStmt;
     401        ptr<Stmt> callStmt;
    402402
    403403        ImplicitCtorDtorStmt( const CodeLocation & loc, const Stmt * callStmt,
  • src/SynTree/Statement.h

    rba417e2 r92a6e02  
    502502class ImplicitCtorDtorStmt : public Statement {
    503503  public:
    504         // Non-owned pointer to the constructor/destructor statement
     504        // the constructor/destructor call statement; owned here for a while, eventually transferred elsewhere
    505505        Statement * callStmt;
    506506
Note: See TracChangeset for help on using the changeset viewer.