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/node_http_parser.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/node_http_parser.cc')
-rw-r--r-- | src/node_http_parser.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/node_http_parser.cc b/src/node_http_parser.cc index 7fddb747cd..085f4494e3 100644 --- a/src/node_http_parser.cc +++ b/src/node_http_parser.cc @@ -21,6 +21,7 @@ #include "node.h" #include "node_buffer.h" +#include "node_internals.h" #include "async_wrap-inl.h" #include "env-inl.h" |