diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2016-05-24 09:54:05 +0200 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2016-05-25 09:54:24 +0200 |
commit | eff96d32dc3dce00f6dc60461d43328965cb214f (patch) | |
tree | 4d1dd69ddd7eb502d1a8f2f3216b2a3a4546f936 /src/node_internals.h | |
parent | 54785f59e16179dc66f00f97e13dce40661447bd (diff) | |
download | node-new-eff96d32dc3dce00f6dc60461d43328965cb214f.tar.gz |
src: add include guards to internal headers
For consistency with the newly added src/base64.h header, check that
NODE_WANT_INTERNALS is defined and set in internal headers.
PR-URL: https://github.com/nodejs/node/pull/6948
Refs: https://github.com/nodejs/node/pull/6910
Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
Diffstat (limited to 'src/node_internals.h')
-rw-r--r-- | src/node_internals.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/node_internals.h b/src/node_internals.h index a46d3130bf..2875f5ac79 100644 --- a/src/node_internals.h +++ b/src/node_internals.h @@ -1,6 +1,8 @@ #ifndef SRC_NODE_INTERNALS_H_ #define SRC_NODE_INTERNALS_H_ +#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS + #include "node.h" #include "util.h" #include "util-inl.h" @@ -313,4 +315,6 @@ v8::MaybeLocal<v8::Object> New(Environment* env, char* data, size_t length); } // namespace node +#endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS + #endif // SRC_NODE_INTERNALS_H_ |