Index: src/compiler/node.h |
diff --git a/src/compiler/node.h b/src/compiler/node.h |
index 7c99705c257f31e5afcec5ec469ee40c8080b39c..3a5afd25dad800d070a901eecce8ca2591b0c7e8 100644 |
--- a/src/compiler/node.h |
+++ b/src/compiler/node.h |
@@ -48,8 +48,8 @@ class NodeData { |
// out-of-line indexed by the Node's id. |
class Node FINAL : public GenericNode<NodeData, Node> { |
public: |
- Node(GenericGraphBase* graph, int input_count) |
- : GenericNode<NodeData, Node>(graph, input_count) {} |
+ Node(GenericGraphBase* graph, int input_count, int reserve_input_count) |
+ : GenericNode<NodeData, Node>(graph, input_count, reserve_input_count) {} |
void Initialize(const Operator* op) { set_op(op); } |