summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/cares_wrap.cc1
-rw-r--r--src/fs_event_wrap.cc1
-rw-r--r--src/handle_wrap.cc1
-rw-r--r--src/node.cc1
-rw-r--r--src/node.h1
-rw-r--r--src/node_crypto.cc1
-rw-r--r--src/node_file.cc1
-rw-r--r--src/node_zlib.cc1
-rw-r--r--src/pipe_wrap.cc1
-rw-r--r--src/process_wrap.cc1
-rw-r--r--src/stream_wrap.cc1
-rw-r--r--src/tcp_wrap.cc1
-rw-r--r--src/timer_wrap.cc1
-rw-r--r--src/tty_wrap.cc1
-rw-r--r--src/udp_wrap.cc1
15 files changed, 14 insertions, 1 deletions
diff --git a/src/cares_wrap.cc b/src/cares_wrap.cc
index 976f774c9..b3e4bd50b 100644
--- a/src/cares_wrap.cc
+++ b/src/cares_wrap.cc
@@ -22,6 +22,7 @@
#include <assert.h>
#include <node.h>
#include <req_wrap.h>
+#include <node_isolate.h>
#include <uv.h>
#include <string.h>
diff --git a/src/fs_event_wrap.cc b/src/fs_event_wrap.cc
index ca584a793..2e6dee4c4 100644
--- a/src/fs_event_wrap.cc
+++ b/src/fs_event_wrap.cc
@@ -21,6 +21,7 @@
#include <node.h>
#include <handle_wrap.h>
+#include <node_isolate.h>
#include <stdlib.h>
diff --git a/src/handle_wrap.cc b/src/handle_wrap.cc
index bce82bdb0..2aff643eb 100644
--- a/src/handle_wrap.cc
+++ b/src/handle_wrap.cc
@@ -21,6 +21,7 @@
#include <node.h>
#include <handle_wrap.h>
+#include <node_isolate.h>
namespace node {
diff --git a/src/node.cc b/src/node.cc
index 952ed492c..61b4547c3 100644
--- a/src/node.cc
+++ b/src/node.cc
@@ -20,6 +20,7 @@
// USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <node.h>
+#include <node_isolate.h>
#include <uv.h>
diff --git a/src/node.h b/src/node.h
index e0df48e88..e8c532464 100644
--- a/src/node.h
+++ b/src/node.h
@@ -64,7 +64,6 @@
#include <sys/stat.h>
#include <assert.h>
-#include <node_isolate.h>
#include <node_object_wrap.h>
#if NODE_WANT_INTERNALS
diff --git a/src/node_crypto.cc b/src/node_crypto.cc
index 70ae99d1f..9cb728077 100644
--- a/src/node_crypto.cc
+++ b/src/node_crypto.cc
@@ -24,6 +24,7 @@
#include <node.h>
#include <node_buffer.h>
+#include <node_isolate.h>
#include <node_root_certs.h>
#include <string.h>
diff --git a/src/node_file.cc b/src/node_file.cc
index 718b0557e..e7293fb00 100644
--- a/src/node_file.cc
+++ b/src/node_file.cc
@@ -22,6 +22,7 @@
#include "node.h"
#include "node_file.h"
#include "node_buffer.h"
+#include <node_isolate.h>
#ifdef __POSIX__
# include "node_stat_watcher.h"
#endif
diff --git a/src/node_zlib.cc b/src/node_zlib.cc
index dc0bc4691..eb7d06d9c 100644
--- a/src/node_zlib.cc
+++ b/src/node_zlib.cc
@@ -29,6 +29,7 @@
#include <node.h>
#include <node_buffer.h>
+#include <node_isolate.h>
#include <req_wrap.h>
#include <node_vars.h>
diff --git a/src/pipe_wrap.cc b/src/pipe_wrap.cc
index 9f6675115..483118ad8 100644
--- a/src/pipe_wrap.cc
+++ b/src/pipe_wrap.cc
@@ -21,6 +21,7 @@
#include <node.h>
#include <node_buffer.h>
+#include <node_isolate.h>
#include <req_wrap.h>
#include <handle_wrap.h>
#include <stream_wrap.h>
diff --git a/src/process_wrap.cc b/src/process_wrap.cc
index 50c88a9db..3d988ac1f 100644
--- a/src/process_wrap.cc
+++ b/src/process_wrap.cc
@@ -21,6 +21,7 @@
#include <node.h>
#include <handle_wrap.h>
+#include <node_isolate.h>
#include <pipe_wrap.h>
#include <string.h>
#include <stdlib.h>
diff --git a/src/stream_wrap.cc b/src/stream_wrap.cc
index 2e1432847..fbe9152b5 100644
--- a/src/stream_wrap.cc
+++ b/src/stream_wrap.cc
@@ -21,6 +21,7 @@
#include <node.h>
#include <node_buffer.h>
+#include <node_isolate.h>
#include <handle_wrap.h>
#include <stream_wrap.h>
#include <tcp_wrap.h>
diff --git a/src/tcp_wrap.cc b/src/tcp_wrap.cc
index 2197850d1..83fdcdd14 100644
--- a/src/tcp_wrap.cc
+++ b/src/tcp_wrap.cc
@@ -21,6 +21,7 @@
#include <node.h>
#include <node_buffer.h>
+#include <node_isolate.h>
#include <req_wrap.h>
#include <handle_wrap.h>
#include <stream_wrap.h>
diff --git a/src/timer_wrap.cc b/src/timer_wrap.cc
index fb8603692..82b7ec984 100644
--- a/src/timer_wrap.cc
+++ b/src/timer_wrap.cc
@@ -21,6 +21,7 @@
#include <node.h>
#include <handle_wrap.h>
+#include <node_isolate.h>
#define UNWRAP \
assert(!args.Holder().IsEmpty()); \
diff --git a/src/tty_wrap.cc b/src/tty_wrap.cc
index b3ed49fa8..1ec8410f1 100644
--- a/src/tty_wrap.cc
+++ b/src/tty_wrap.cc
@@ -21,6 +21,7 @@
#include <node.h>
#include <node_buffer.h>
+#include <node_isolate.h>
#include <req_wrap.h>
#include <handle_wrap.h>
#include <stream_wrap.h>
diff --git a/src/udp_wrap.cc b/src/udp_wrap.cc
index 81405f4f6..f0c487ece 100644
--- a/src/udp_wrap.cc
+++ b/src/udp_wrap.cc
@@ -21,6 +21,7 @@
#include <node.h>
#include <node_buffer.h>
+#include <node_isolate.h>
#include <req_wrap.h>
#include <handle_wrap.h>