Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnna Henningsen <anna@addaleax.net>2017-08-08 20:56:02 +0300
committerAnna Henningsen <anna@addaleax.net>2017-09-14 18:38:38 +0300
commit290315ace7eed6eeeb300754dd68fc1af4d80c9b (patch)
treedb8e56c9709d43c202c58a0576091e77eb2c44c9 /src/node_os.cc
parent4ae0afb12b6d29c8bb743c4fd560a91fd626b558 (diff)
src: refactor `#include` handling
`node_internals.h` already includes the most common headers, so double includes can be avoided in a lot of cases. Also don’t include `node_internals.h` from `node.h` implicitly anymore, as that is mostly unnecessary. PR-URL: https://github.com/nodejs/node/pull/14697 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'src/node_os.cc')
-rw-r--r--src/node_os.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/node_os.cc b/src/node_os.cc
index c71ca401ed6..f09cd6fa5a0 100644
--- a/src/node_os.cc
+++ b/src/node_os.cc
@@ -19,10 +19,7 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
-#include "node.h"
-#include "v8.h"
-#include "env.h"
-#include "env-inl.h"
+#include "node_internals.h"
#include "string_bytes.h"
#include <errno.h>