summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorScott Blomquist <sblom@microsoft.com>2013-10-24 13:10:43 -0700
committerScott Blomquist <sblom@microsoft.com>2013-10-29 09:38:22 -0700
commitc137e3d2492160433a78a5d453b8768a7a106864 (patch)
tree46f34a9c8152b86a7a71f56c967ba8381b7c4090 /src
parentf755ecf484a9789525746475b924ddf2b3f316d0 (diff)
downloadnode-new-c137e3d2492160433a78a5d453b8768a7a106864.tar.gz
src: Remove unused refs to node_object_wrap.h
Turns out that we don't use node_object_wrap.h any more in core, and, with v8 3.21, it's breaking our Windows build. Removing refs to it everywhere (and adding node.h in one case where it was the only way node.h was being included), we have restored the Windows build.
Diffstat (limited to 'src')
-rw-r--r--src/node.h1
-rw-r--r--src/node_contextify.h1
-rw-r--r--src/node_crypto.h1
-rw-r--r--src/node_stat_watcher.h3
4 files changed, 1 insertions, 5 deletions
diff --git a/src/node.h b/src/node.h
index 00f60d3fb1..9f37e85119 100644
--- a/src/node.h
+++ b/src/node.h
@@ -60,7 +60,6 @@
#include "v8.h" // NOLINT(build/include_order)
#include "node_version.h" // NODE_MODULE_VERSION
-#include "node_object_wrap.h"
// Forward-declare these functions now to stop MSVS from becoming
// terminally confused when it's done in node_internals.h
diff --git a/src/node_contextify.h b/src/node_contextify.h
index 2b45bb059e..c362f48058 100644
--- a/src/node_contextify.h
+++ b/src/node_contextify.h
@@ -23,7 +23,6 @@
#define SRC_NODE_CONTEXTIFY_H_
#include "node.h"
-#include "node_object_wrap.h"
#include "v8.h"
#include "uv.h"
diff --git a/src/node_crypto.h b/src/node_crypto.h
index f6e3276a54..770528ec1a 100644
--- a/src/node_crypto.h
+++ b/src/node_crypto.h
@@ -25,7 +25,6 @@
#include "node.h"
#include "node_crypto_clienthello.h" // ClientHelloParser
#include "node_crypto_clienthello-inl.h"
-#include "node_object_wrap.h"
#ifdef OPENSSL_NPN_NEGOTIATED
#include "node_buffer.h"
diff --git a/src/node_stat_watcher.h b/src/node_stat_watcher.h
index eb6b9d2a10..ace229618f 100644
--- a/src/node_stat_watcher.h
+++ b/src/node_stat_watcher.h
@@ -22,9 +22,8 @@
#ifndef SRC_NODE_STAT_WATCHER_H_
#define SRC_NODE_STAT_WATCHER_H_
-#include "node_object_wrap.h"
-
#include "env.h"
+#include "node.h"
#include "uv.h"
#include "v8.h"
#include "weak-object.h"