diff options
author | Daniel Bevenius <daniel.bevenius@gmail.com> | 2018-04-10 15:17:44 +0200 |
---|---|---|
committer | Ruben Bridgewater <ruben@bridgewater.de> | 2018-04-12 15:28:11 +0200 |
commit | 0e811173b1b5ddb94b6ed43735f2e33ab980e627 (patch) | |
tree | 73a2874e043842753cfccb441458a63849087731 /src/fs_event_wrap.cc | |
parent | 3bd6d8d7f544164728ff4cfd2c37cff4877a8cb1 (diff) | |
download | node-new-0e811173b1b5ddb94b6ed43735f2e33ab980e627.tar.gz |
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/fs_event_wrap.cc')
-rw-r--r-- | src/fs_event_wrap.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/fs_event_wrap.cc b/src/fs_event_wrap.cc index 46318e39c9..1e7505d6d3 100644 --- a/src/fs_event_wrap.cc +++ b/src/fs_event_wrap.cc @@ -23,6 +23,7 @@ #include "env-inl.h" #include "util-inl.h" #include "node.h" +#include "node_internals.h" #include "handle_wrap.h" #include "string_bytes.h" |