summaryrefslogtreecommitdiff
path: root/src/node_util.cc
diff options
context:
space:
mode:
authorAnna Henningsen <anna@addaleax.net>2017-08-08 19:56:02 +0200
committerAnna Henningsen <anna@addaleax.net>2017-09-14 17:38:38 +0200
commit290315ace7eed6eeeb300754dd68fc1af4d80c9b (patch)
treedb8e56c9709d43c202c58a0576091e77eb2c44c9 /src/node_util.cc
parent4ae0afb12b6d29c8bb743c4fd560a91fd626b558 (diff)
downloadandroid-node-v8-290315ace7eed6eeeb300754dd68fc1af4d80c9b.tar.gz
android-node-v8-290315ace7eed6eeeb300754dd68fc1af4d80c9b.tar.bz2
android-node-v8-290315ace7eed6eeeb300754dd68fc1af4d80c9b.zip
src: refactor `#include` handling
`node_internals.h` already includes the most common headers, so double includes can be avoided in a lot of cases. Also don’t include `node_internals.h` from `node.h` implicitly anymore, as that is mostly unnecessary. PR-URL: https://github.com/nodejs/node/pull/14697 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'src/node_util.cc')
-rw-r--r--src/node_util.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/node_util.cc b/src/node_util.cc
index bbbea9ea22..ab1f3c9f91 100644
--- a/src/node_util.cc
+++ b/src/node_util.cc
@@ -1,8 +1,5 @@
-#include "node.h"
+#include "node_internals.h"
#include "node_watchdog.h"
-#include "v8.h"
-#include "env.h"
-#include "env-inl.h"
namespace node {
namespace util {