Index: src/full-codegen.h |
diff --git a/src/full-codegen.h b/src/full-codegen.h |
index 0e0ffe924b00c08dd8cf9efae83f7ed93b541015..2a6b7057c409c04f80348a5df504cb5f502c2e0e 100644 |
--- a/src/full-codegen.h |
+++ b/src/full-codegen.h |
@@ -796,12 +796,11 @@ class FullCodeGenerator: public AstVisitor { |
// A map from property names to getter/setter pairs allocated in the zone. |
class AccessorTable: public TemplateHashMap<Literal, |
ObjectLiteral::Accessors, |
- ZoneListAllocationPolicy> { |
+ ZoneAllocationPolicy> { |
public: |
explicit AccessorTable(Zone* zone) : |
- TemplateHashMap<Literal, |
- ObjectLiteral::Accessors, |
- ZoneListAllocationPolicy>(Literal::Match), |
+ TemplateHashMap<Literal, ObjectLiteral::Accessors, |
+ ZoneAllocationPolicy>(Literal::Match), |
zone_(zone) { } |
Iterator lookup(Literal* literal) { |