Browse Source

hdr: always define NODE_WANT_INTERNALS

Otherwise the warning could be printed on some systems.

fix #8419
v0.10.33-release
Fedor Indutny 11 years ago
parent
commit
d87ae24dfe
  1. 2
      src/node.h

2
src/node.h

@ -66,7 +66,7 @@
#include "node_object_wrap.h"
#if NODE_WANT_INTERNALS
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
# include "node_internals.h"
#endif

Loading…
Cancel
Save