Index: src/compiler/generic-graph.h |
diff --git a/src/compiler/generic-graph.h b/src/compiler/generic-graph.h |
index a55545654535869d54e1c4c43bbb6a8a97c802c1..47fb0aaa81d25a1eefd397f08ad334b7cd141666 100644 |
--- a/src/compiler/generic-graph.h |
+++ b/src/compiler/generic-graph.h |
@@ -5,15 +5,14 @@ |
#ifndef V8_COMPILER_GENERIC_GRAPH_H_ |
#define V8_COMPILER_GENERIC_GRAPH_H_ |
-#include "src/compiler/generic-node.h" |
+#include "src/zone.h" |
namespace v8 { |
namespace internal { |
- |
-class Zone; |
- |
namespace compiler { |
+typedef int NodeId; |
+ |
class GenericGraphBase : public ZoneObject { |
public: |
explicit GenericGraphBase(Zone* zone) : zone_(zone), next_node_id_(0) {} |