summaryrefslogtreecommitdiff
path: root/src/node_contextify.h
diff options
context:
space:
mode:
authorAnna Henningsen <anna@addaleax.net>2018-08-25 01:36:16 +0200
committerAnna Henningsen <anna@addaleax.net>2018-08-28 16:54:07 +0200
commit09fce8562a3a898e02666e89aa94a2f88fbb766f (patch)
tree9286702bffa9ff53845d4cd690cf273dcac368d1 /src/node_contextify.h
parent66e6d7835ea699d8efe5f53974ed7bcffe7f8a9f (diff)
downloadandroid-node-v8-09fce8562a3a898e02666e89aa94a2f88fbb766f.tar.gz
android-node-v8-09fce8562a3a898e02666e89aa94a2f88fbb766f.tar.bz2
android-node-v8-09fce8562a3a898e02666e89aa94a2f88fbb766f.zip
src: add missing `NODE_WANT_INTERNALS` guards
We generally add these to all headers that are considered internal to Node. These aren’t distributed as part of the headers tarball, so I think this does not have to be semver-major (and we have been changing the APIs in these headers freely anyway). PR-URL: https://github.com/nodejs/node/pull/22514 Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'src/node_contextify.h')
-rw-r--r--src/node_contextify.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/node_contextify.h b/src/node_contextify.h
index d094692186..8af1d1d4fc 100644
--- a/src/node_contextify.h
+++ b/src/node_contextify.h
@@ -1,6 +1,8 @@
#ifndef SRC_NODE_CONTEXTIFY_H_
#define SRC_NODE_CONTEXTIFY_H_
+#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
+
#include "node_internals.h"
#include "node_context_data.h"
@@ -107,4 +109,6 @@ class ContextifyContext {
} // namespace contextify
} // namespace node
+#endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
+
#endif // SRC_NODE_CONTEXTIFY_H_