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/inspector_agent.h
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/inspector_agent.h')
-rw-r--r--src/inspector_agent.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspector_agent.h b/src/inspector_agent.h
index c7c92186d11..1c2bde0da73 100644
--- a/src/inspector_agent.h
+++ b/src/inspector_agent.h
@@ -6,7 +6,7 @@
#error("This header can only be used when inspector is enabled")
#endif
-#include "node_options-inl.h"
+#include "node_options.h"
#include "v8.h"
#include <cstddef>