Index: src/compiler/graph-reducer.h |
diff --git a/src/compiler/graph-reducer.h b/src/compiler/graph-reducer.h |
index b3534e8435ba58570900471e341a4acda24350d3..028ea7c42620d49336880a5327ce5797f5e0564b 100644 |
--- a/src/compiler/graph-reducer.h |
+++ b/src/compiler/graph-reducer.h |
@@ -5,9 +5,7 @@ |
#ifndef V8_COMPILER_GRAPH_REDUCER_H_ |
#define V8_COMPILER_GRAPH_REDUCER_H_ |
-#include <list> |
- |
-#include "src/zone-allocator.h" |
+#include "src/zone-containers.h" |
namespace v8 { |
namespace internal { |
@@ -69,10 +67,8 @@ class GraphReducer V8_FINAL { |
void ReduceGraph(); |
private: |
- typedef std::list<Reducer*, zone_allocator<Reducer*> > Reducers; |
- |
Graph* graph_; |
- Reducers reducers_; |
+ ZoneVector<Reducer*> reducers_; |
DISALLOW_COPY_AND_ASSIGN(GraphReducer); |
}; |