Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/ExpressionNode.cc

    r6611177 rbb7422a  
    1313// Update Count     : 1083
    1414//
    15 
    16 #include "ExpressionNode.h"
    1715
    1816#include <cassert>                 // for assert
     
    2725#include "Common/SemanticError.h"  // for SemanticError
    2826#include "Common/utility.h"        // for maybeMoveBuild, maybeBuild, CodeLo...
    29 #include "DeclarationNode.h"       // for DeclarationNode
    30 #include "InitializerNode.h"       // for InitializerNode
     27#include "ParseNode.h"             // for ExpressionNode, maybeMoveBuildType
    3128#include "parserutility.h"         // for notZeroExpr
    3229
     
    702699} // build_binary_val
    703700
     701ast::Expr * build_binary_ptr( const CodeLocation & location,
     702                OperKinds op,
     703                ExpressionNode * expr_node1,
     704                ExpressionNode * expr_node2 ) {
     705        return build_binary_val( location, op, expr_node1, expr_node2 );
     706} // build_binary_ptr
     707
    704708ast::Expr * build_cond( const CodeLocation & location,
    705709                ExpressionNode * expr_node1,
Note: See TracChangeset for help on using the changeset viewer.