summaryrefslogtreecommitdiff
path: root/deps
diff options
context:
space:
mode:
authorMichaël Zasso <targos@protonmail.com>2019-03-27 17:57:28 +0100
committerMichaël Zasso <targos@protonmail.com>2019-11-08 15:46:45 +0100
commit5c25db3510c97e6a813481a29eadfb66152328f5 (patch)
tree74943718e22a76055328f986fcfbaa9782d25b1e /deps
parentc587bb7ddf7559c8c3d6a44d1c2bfadd9634402f (diff)
downloadandroid-node-v8-5c25db3510c97e6a813481a29eadfb66152328f5.tar.gz
android-node-v8-5c25db3510c97e6a813481a29eadfb66152328f5.tar.bz2
android-node-v8-5c25db3510c97e6a813481a29eadfb66152328f5.zip
deps: V8: silence irrelevant warnings
PR-URL: https://github.com/nodejs/node/pull/26685 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com>
Diffstat (limited to 'deps')
-rw-r--r--deps/v8/include/v8.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/deps/v8/include/v8.h b/deps/v8/include/v8.h
index 1387f74715..615911ef46 100644
--- a/deps/v8/include/v8.h
+++ b/deps/v8/include/v8.h
@@ -4640,8 +4640,7 @@ class V8_EXPORT WasmModuleObject : public Object {
* An opaque, native heap object for transferring wasm modules. It
* supports move semantics, and does not support copy semantics.
*/
- using TransferrableModule V8_DEPRECATED("Use CompiledWasmModule directly") =
- CompiledWasmModule;
+ using TransferrableModule = CompiledWasmModule;
/**
* Get an in-memory, non-persistable, and context-independent (meaning,
@@ -7055,7 +7054,6 @@ class PromiseRejectMessage {
typedef void (*PromiseRejectCallback)(PromiseRejectMessage message);
// --- Microtasks Callbacks ---
-V8_DEPRECATE_SOON("Use *WithData version.")
typedef void (*MicrotasksCompletedCallback)(Isolate*);
typedef void (*MicrotasksCompletedCallbackWithData)(Isolate*, void*);
typedef void (*MicrotaskCallback)(void* data);