summaryrefslogtreecommitdiff
path: root/deps/v8/src/wasm/wasm-engine.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/wasm/wasm-engine.h')
-rw-r--r--deps/v8/src/wasm/wasm-engine.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/v8/src/wasm/wasm-engine.h b/deps/v8/src/wasm/wasm-engine.h
index 2d96111462..a38308110b 100644
--- a/deps/v8/src/wasm/wasm-engine.h
+++ b/deps/v8/src/wasm/wasm-engine.h
@@ -137,6 +137,8 @@ class NativeModuleCache {
class V8_EXPORT_PRIVATE WasmEngine {
public:
WasmEngine();
+ WasmEngine(const WasmEngine&) = delete;
+ WasmEngine& operator=(const WasmEngine&) = delete;
~WasmEngine();
// Synchronously validates the given bytes that represent an encoded Wasm
@@ -413,8 +415,6 @@ class V8_EXPORT_PRIVATE WasmEngine {
// End of fields protected by {mutex_}.
//////////////////////////////////////////////////////////////////////////////
-
- DISALLOW_COPY_AND_ASSIGN(WasmEngine);
};
} // namespace wasm