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-02 19:03:53 +0300
committerRich Trott <rtrott@gmail.com>2019-05-05 07:24:17 +0300
commitc21693b39dfc428bc8a25a6bd7e47be7e34fdb21 (patch)
tree5dc011710189da254be9ad41be1c90e83aed51e1 /src/node_worker.cc
parent11e1e0050b548c2b815d40dfa0cfbaf63289ae62 (diff)
src: remove node_options-inl.h from header files
Fix unnecessary inclusion of node_options-inl.h into env.h via inspector_agent.h, causing almost all of src/ to recompile on any change to the options parser. Its intended that *-inl.h header files are only included into the src files that call the inline methods. PR-URL: https://github.com/nodejs/node/pull/27538 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'src/node_worker.cc')
-rw-r--r--src/node_worker.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/node_worker.cc b/src/node_worker.cc
index c1a1123ef13..f9b675e96ad 100644
--- a/src/node_worker.cc
+++ b/src/node_worker.cc
@@ -2,6 +2,7 @@
#include "debug_utils.h"
#include "node_errors.h"
#include "node_buffer.h"
+#include "node_options-inl.h"
#include "node_perf.h"
#include "util.h"
#include "async_wrap-inl.h"