Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/ExpressionNode.cc

    rbb7422a r6611177  
    1313// Update Count     : 1083
    1414//
     15
     16#include "ExpressionNode.h"
    1517
    1618#include <cassert>                 // for assert
     
    2527#include "Common/SemanticError.h"  // for SemanticError
    2628#include "Common/utility.h"        // for maybeMoveBuild, maybeBuild, CodeLo...
    27 #include "ParseNode.h"             // for ExpressionNode, maybeMoveBuildType
     29#include "DeclarationNode.h"       // for DeclarationNode
     30#include "InitializerNode.h"       // for InitializerNode
    2831#include "parserutility.h"         // for notZeroExpr
    2932
     
    699702} // build_binary_val
    700703
    701 ast::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 
    708704ast::Expr * build_cond( const CodeLocation & location,
    709705                ExpressionNode * expr_node1,
Note: See TracChangeset for help on using the changeset viewer.