From bb9df3e5d68fb88bd68fa3269744cdf8cab542c8 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Fri, 13 Oct 2017 14:07:44 +0200 Subject: [PATCH] src: remove unused includes from node_wrap.h I cannot find any usages of these includes and think they can be removed. PR-URL: https://github.com/nodejs/node/pull/16179 Reviewed-By: Gireesh Punathil Reviewed-By: Colin Ihrig Reviewed-By: James M Snell --- src/node_wrap.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/node_wrap.h b/src/node_wrap.h index 2df9b10f6f87af..8508ef7805c07b 100644 --- a/src/node_wrap.h +++ b/src/node_wrap.h @@ -3,13 +3,10 @@ #if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS -#include "env-inl.h" -#include "js_stream.h" +#include "env.h" #include "pipe_wrap.h" #include "tcp_wrap.h" #include "tty_wrap.h" -#include "udp_wrap.h" -#include "util-inl.h" #include "uv.h" #include "v8.h"