Index: src/compiler/js-operator.h |
diff --git a/src/compiler/js-operator.h b/src/compiler/js-operator.h |
index 1ce8173d61ea3094ae3d5941731514501d4acacd..4927ce56f386cf57b5e9ee0f8efca9423c7cc502 100644 |
--- a/src/compiler/js-operator.h |
+++ b/src/compiler/js-operator.h |
@@ -195,7 +195,7 @@ const StoreNamedParameters& StoreNamedParametersOf(const Operator* op); |
// Interface for building JavaScript-level operators, e.g. directly from the |
// AST. Most operators have no parameters, thus can be globally shared for all |
// graphs. |
-class JSOperatorBuilder FINAL { |
+class JSOperatorBuilder FINAL : public ZoneObject { |
public: |
explicit JSOperatorBuilder(Zone* zone); |
@@ -266,6 +266,8 @@ class JSOperatorBuilder FINAL { |
const JSOperatorBuilderImpl& impl_; |
Zone* const zone_; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(JSOperatorBuilder); |
}; |
} // namespace compiler |