aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/src/compiler/node-aux-data.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/compiler/node-aux-data.h')
-rw-r--r--deps/v8/src/compiler/node-aux-data.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/deps/v8/src/compiler/node-aux-data.h b/deps/v8/src/compiler/node-aux-data.h
index 1e836338a9..7acce33949 100644
--- a/deps/v8/src/compiler/node-aux-data.h
+++ b/deps/v8/src/compiler/node-aux-data.h
@@ -5,9 +5,7 @@
#ifndef V8_COMPILER_NODE_AUX_DATA_H_
#define V8_COMPILER_NODE_AUX_DATA_H_
-#include <vector>
-
-#include "src/zone-allocator.h"
+#include "src/zone-containers.h"
namespace v8 {
namespace internal {
@@ -26,10 +24,7 @@ class NodeAuxData {
inline T Get(Node* node);
private:
- typedef zone_allocator<T> ZoneAllocator;
- typedef std::vector<T, ZoneAllocator> TZoneVector;
-
- TZoneVector aux_data_;
+ ZoneVector<T> aux_data_;
};
}
}