Skip to content

Commit

Permalink
src: Remove unused refs to node_object_wrap.h
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
sblom committed Oct 29, 2013
1 parent f755ecf commit c137e3d
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 5 deletions.
1 change: 0 additions & 1 deletion src/node.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion src/node_contextify.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
#define SRC_NODE_CONTEXTIFY_H_

#include "node.h"
#include "node_object_wrap.h"
#include "v8.h"
#include "uv.h"

Expand Down
1 change: 0 additions & 1 deletion src/node_crypto.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 1 addition & 2 deletions src/node_stat_watcher.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit c137e3d

Please sign in to comment.