Changeset 73edfe9 for src


Ignore:
Timestamp:
Jun 18, 2019, 6:05:34 PM (5 years ago)
Author:
Aaron Moss <a3moss@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
c829320, f52ce6e
Parents:
898ae07 (diff), a2a85658 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Convert.cpp

    r898ae07 r73edfe9  
    993993        const ast::Expr * visit( const ast::UniqueExpr * node ) override final {
    994994                auto rslt = new UniqueExpr(
    995                         get<Expression>().accept1(node->expr)
     995                        get<Expression>().accept1(node->expr),
     996                        node->id
    996997                );
    997998
     
    23672368                auto rslt = new ast::UniqueExpr(
    23682369                        old->location,
    2369                         GET_ACCEPT_1(expr, Expr)
     2370                        GET_ACCEPT_1(expr, Expr),
     2371                        old->get_id()
    23702372                );
    23712373                rslt->object = GET_ACCEPT_1(object, ObjectDecl);
Note: See TracChangeset for help on using the changeset viewer.