summaryrefslogtreecommitdiff
path: root/src/js_stream.h
diff options
context:
space:
mode:
authorSam Roberts <vieuxtech@gmail.com>2018-11-29 17:24:47 -0800
committerSam Roberts <vieuxtech@gmail.com>2018-12-03 19:44:15 -0800
commit0c65314e0e8602f4a7e0ace43ebd63de233eac62 (patch)
treea438119eee16a3d3d3427ebf1845ee5df1e626a1 /src/js_stream.h
parent02cd7069a8631a324298be9f24771fb0faf23639 (diff)
downloadandroid-node-v8-0c65314e0e8602f4a7e0ace43ebd63de233eac62.tar.gz
android-node-v8-0c65314e0e8602f4a7e0ace43ebd63de233eac62.tar.bz2
android-node-v8-0c65314e0e8602f4a7e0ace43ebd63de233eac62.zip
src: fix type mismatch warnings from missing priv
Registration initialization functions are expected to have a 4th argument, a void*, so add them where necessary to fix the warnings. PR-URL: https://github.com/nodejs/node/pull/24737 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'src/js_stream.h')
-rw-r--r--src/js_stream.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/js_stream.h b/src/js_stream.h
index 6612e558ae..482373016d 100644
--- a/src/js_stream.h
+++ b/src/js_stream.h
@@ -14,7 +14,8 @@ class JSStream : public AsyncWrap, public StreamBase {
public:
static void Initialize(v8::Local<v8::Object> target,
v8::Local<v8::Value> unused,
- v8::Local<v8::Context> context);
+ v8::Local<v8::Context> context,
+ void* priv);
bool IsAlive() override;
bool IsClosing() override;