From eff96d32dc3dce00f6dc60461d43328965cb214f Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Tue, 24 May 2016 09:54:05 +0200 Subject: 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 Reviewed-By: James M Snell Reviewed-By: Trevor Norris --- src/handle_wrap.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/handle_wrap.h') diff --git a/src/handle_wrap.h b/src/handle_wrap.h index 49b36f80f9..eaf0faef20 100644 --- a/src/handle_wrap.h +++ b/src/handle_wrap.h @@ -1,6 +1,8 @@ #ifndef SRC_HANDLE_WRAP_H_ #define SRC_HANDLE_WRAP_H_ +#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS + #include "async-wrap.h" #include "util.h" #include "uv.h" @@ -69,5 +71,6 @@ class HandleWrap : public AsyncWrap { } // namespace node +#endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS #endif // SRC_HANDLE_WRAP_H_ -- cgit v1.2.3