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:
authorSam Roberts <vieuxtech@gmail.com>2019-05-22 22:12:36 +0300
committerAnna Henningsen <anna@addaleax.net>2019-05-26 18:09:45 +0300
commit02f9a0fe27a70062631a39971099e13f54d2b588 (patch)
tree17561268145e62e01e8cdb0f8a4c5d4f9b204af9 /src/node_trace_events.cc
parent91ec5bf7ba78039b6ab856c87aa39e3b7ef77c7e (diff)
src: move DiagnosticFilename inlines into a -inl.h
DiagnosticFilename's constructor default values use inlines from env-inl.h, causing the many users of node_internals.h to include env-inl.h, even if they never use DiagnosticFilename. PR-URL: https://github.com/nodejs/node/pull/27839 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to 'src/node_trace_events.cc')
-rw-r--r--src/node_trace_events.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node_trace_events.cc b/src/node_trace_events.cc
index 24e1d66fb7e..f5852076b4e 100644
--- a/src/node_trace_events.cc
+++ b/src/node_trace_events.cc
@@ -1,5 +1,5 @@
#include "base_object-inl.h"
-#include "env.h"
+#include "env-inl.h"
#include "memory_tracker-inl.h"
#include "node.h"
#include "node_internals.h"