summaryrefslogtreecommitdiff
path: root/deps/v8/src
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src')
-rw-r--r--deps/v8/src/wasm/wasm-debug.cc4
-rw-r--r--deps/v8/src/wasm/wasm-interpreter.h4
2 files changed, 5 insertions, 3 deletions
diff --git a/deps/v8/src/wasm/wasm-debug.cc b/deps/v8/src/wasm/wasm-debug.cc
index ea989c081d..f3580e4427 100644
--- a/deps/v8/src/wasm/wasm-debug.cc
+++ b/deps/v8/src/wasm/wasm-debug.cc
@@ -97,7 +97,6 @@ MaybeHandle<String> GetLocalName(Isolate* isolate,
}
class InterpreterHandle {
- MOVE_ONLY_NO_DEFAULT_CONSTRUCTOR(InterpreterHandle);
Isolate* isolate_;
const WasmModule* module_;
WasmInterpreter interpreter_;
@@ -461,6 +460,9 @@ class InterpreterHandle {
}
return local_scope_object;
}
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(InterpreterHandle);
};
} // namespace
diff --git a/deps/v8/src/wasm/wasm-interpreter.h b/deps/v8/src/wasm/wasm-interpreter.h
index 4eb0675aba..e0a32c71d6 100644
--- a/deps/v8/src/wasm/wasm-interpreter.h
+++ b/deps/v8/src/wasm/wasm-interpreter.h
@@ -172,8 +172,6 @@ class V8_EXPORT_PRIVATE WasmInterpreter {
uint32_t ActivationFrameBase(uint32_t activation_id);
};
- MOVE_ONLY_NO_DEFAULT_CONSTRUCTOR(WasmInterpreter);
-
WasmInterpreter(Isolate* isolate, const WasmModule* module,
const ModuleWireBytes& wire_bytes,
Handle<WasmInstanceObject> instance);
@@ -220,6 +218,8 @@ class V8_EXPORT_PRIVATE WasmInterpreter {
private:
Zone zone_;
std::unique_ptr<WasmInterpreterInternals> internals_;
+
+ DISALLOW_COPY_AND_ASSIGN(WasmInterpreter);
};
} // namespace wasm