Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/ExpressionNode.hpp

    rc92bdcc rd1fbc56e  
    4343        ast::Expr * build() {
    4444                ast::Expr * node = expr.release();
    45                 node->set_extension( this->get_extension() );
     45                node->extension = this->extension;
    4646                node->location = this->location;
    4747                return node;
     
    8383ast::Expr * build_func( const CodeLocation &, ExpressionNode * function, ExpressionNode * expr_node );
    8484ast::Expr * build_compoundLiteral( const CodeLocation &, DeclarationNode * decl_node, InitializerNode * kids );
     85ast::Expr * build_va_arg( const CodeLocation &, ExpressionNode * function, DeclarationNode * type );
    8586
    8687ast::Expr * build_enum_pos_expr( const CodeLocation &, ast::Expr * expr_node );
Note: See TracChangeset for help on using the changeset viewer.