From c21693b39dfc428bc8a25a6bd7e47be7e34fdb21 Mon Sep 17 00:00:00 2001 From: Sam Roberts Date: Thu, 2 May 2019 09:03:53 -0700 Subject: 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 Reviewed-By: Colin Ihrig Reviewed-By: Rich Trott Reviewed-By: Anna Henningsen --- src/inspector_agent.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/inspector_agent.h') diff --git a/src/inspector_agent.h b/src/inspector_agent.h index c7c92186d1..1c2bde0da7 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 -- cgit v1.2.1