summaryrefslogtreecommitdiff
path: root/src/stream_base.cc
diff options
context:
space:
mode:
authorDaniel Bevenius <daniel.bevenius@gmail.com>2018-04-10 15:17:44 +0200
committerRuben Bridgewater <ruben@bridgewater.de>2018-04-12 15:28:11 +0200
commit0e811173b1b5ddb94b6ed43735f2e33ab980e627 (patch)
tree73a2874e043842753cfccb441458a63849087731 /src/stream_base.cc
parent3bd6d8d7f544164728ff4cfd2c37cff4877a8cb1 (diff)
downloadandroid-node-v8-0e811173b1b5ddb94b6ed43735f2e33ab980e627.tar.gz
android-node-v8-0e811173b1b5ddb94b6ed43735f2e33ab980e627.tar.bz2
android-node-v8-0e811173b1b5ddb94b6ed43735f2e33ab980e627.zip
src: add node_internal.h includes for arraysize
This commit adds includes for node_internal.h in source files that use arraysize but don't include this header. The motivation for this is to make refactoring easier (and is the reason I noticed this). PR-URL: https://github.com/nodejs/node/pull/19916 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Diffstat (limited to 'src/stream_base.cc')
-rw-r--r--src/stream_base.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/stream_base.cc b/src/stream_base.cc
index 263943d2b0..880e1a968d 100644
--- a/src/stream_base.cc
+++ b/src/stream_base.cc
@@ -3,6 +3,7 @@
#include "node.h"
#include "node_buffer.h"
+#include "node_internals.h"
#include "env-inl.h"
#include "js_stream.h"
#include "string_bytes.h"