Index: src/zone-containers.h |
diff --git a/src/zone-containers.h b/src/zone-containers.h |
index 0d9c2d76e27f4a200b4d57cf1e4438e8cb2af24f..1295ed7ab950e40f61c9d7d1928bde1166673a17 100644 |
--- a/src/zone-containers.h |
+++ b/src/zone-containers.h |
@@ -5,15 +5,15 @@ |
#ifndef V8_ZONE_CONTAINERS_H_ |
#define V8_ZONE_CONTAINERS_H_ |
-#include <set> |
#include <vector> |
-#include "src/zone.h" |
+#include "src/zone-allocator.h" |
namespace v8 { |
namespace internal { |
-typedef zone_allocator<int> ZoneIntAllocator; |
+typedef std::vector<bool, ZoneBoolAllocator> BoolVector; |
+ |
typedef std::vector<int, ZoneIntAllocator> IntVector; |
typedef IntVector::iterator IntVectorIter; |
typedef IntVector::reverse_iterator IntVectorRIter; |