Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Convert.cpp

    ra2a85658 re6faef4  
    993993        const ast::Expr * visit( const ast::UniqueExpr * node ) override final {
    994994                auto rslt = new UniqueExpr(
    995                         get<Expression>().accept1(node->expr),
    996                         node->id
     995                        get<Expression>().accept1(node->expr)
    997996                );
    998997
     
    23682367                auto rslt = new ast::UniqueExpr(
    23692368                        old->location,
    2370                         GET_ACCEPT_1(expr, Expr),
    2371                         old->get_id()
     2369                        GET_ACCEPT_1(expr, Expr)
    23722370                );
    23732371                rslt->object = GET_ACCEPT_1(object, ObjectDecl);
Note: See TracChangeset for help on using the changeset viewer.