summaryrefslogtreecommitdiff
path: root/deps/v8/include
diff options
context:
space:
mode:
authorMichaël Zasso <targos@protonmail.com>2019-03-13 10:55:48 +0100
committerMichaël Zasso <targos@protonmail.com>2019-03-14 18:50:51 +0100
commit1c494b0a9500d4ec27330ff7ed55865112a5ee77 (patch)
tree7bac5d94148824c698326da9bceb4f4909fd8aa4 /deps/v8/include
parentff5d632a8312d738400ef882310720f7aa2d15c9 (diff)
downloadandroid-node-v8-1c494b0a9500d4ec27330ff7ed55865112a5ee77.tar.gz
android-node-v8-1c494b0a9500d4ec27330ff7ed55865112a5ee77.tar.bz2
android-node-v8-1c494b0a9500d4ec27330ff7ed55865112a5ee77.zip
deps: silence irrelevant V8 warnings
PR-URL: https://github.com/nodejs/node/pull/25852 Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com>
Diffstat (limited to 'deps/v8/include')
-rw-r--r--deps/v8/include/v8.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/deps/v8/include/v8.h b/deps/v8/include/v8.h
index 97e3584d0b..c5d9fc3a97 100644
--- a/deps/v8/include/v8.h
+++ b/deps/v8/include/v8.h
@@ -4337,14 +4337,13 @@ class V8_EXPORT CompiledWasmModule {
class V8_EXPORT WasmModuleObject : public Object {
public:
// TODO(clemensh): Remove after 7.3 branch.
- V8_DEPRECATED("Use OwnedBuffer", typedef)
- std::pair<std::unique_ptr<const uint8_t[]>, size_t> SerializedModule;
+ typedef std::pair<std::unique_ptr<const uint8_t[]>, size_t> SerializedModule;
/**
* A unowned reference to a byte buffer.
* TODO(clemensh): Remove after 7.3 branch.
*/
- V8_DEPRECATED("Use MemorySpan<const uint8_t>", struct) BufferReference {
+ struct BufferReference {
const uint8_t* start;
size_t size;
BufferReference(const uint8_t* start, size_t size)