Changes in / [898ae07:73edfe9]
- File:
-
- 1 edited
-
src/AST/Convert.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Convert.cpp
r898ae07 r73edfe9 993 993 const ast::Expr * visit( const ast::UniqueExpr * node ) override final { 994 994 auto rslt = new UniqueExpr( 995 get<Expression>().accept1(node->expr) 995 get<Expression>().accept1(node->expr), 996 node->id 996 997 ); 997 998 … … 2367 2368 auto rslt = new ast::UniqueExpr( 2368 2369 old->location, 2369 GET_ACCEPT_1(expr, Expr) 2370 GET_ACCEPT_1(expr, Expr), 2371 old->get_id() 2370 2372 ); 2371 2373 rslt->object = GET_ACCEPT_1(object, ObjectDecl);
Note:
See TracChangeset
for help on using the changeset viewer.