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:
authorcjihrig <cjihrig@gmail.com>2020-03-13 04:32:07 +0300
committerMyles Borins <mylesborins@google.com>2020-03-24 09:55:07 +0300
commit1950c08ab190c56a2ce91fc0f56ddf081fcb341c (patch)
treef1dfac5fdad230de457f8b1857e0f9413502749f /src/node.cc
parentc00ce7b7088d6f8af79dab2d832ce60c7351690d (diff)
src: unconditionally include report feature
This commit removes all #ifdef NODE_REPORT checks in the src directory. PR-URL: https://github.com/nodejs/node/pull/32242 Fixes: https://github.com/nodejs/node/issues/26293 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Diffstat (limited to 'src/node.cc')
-rw-r--r--src/node.cc7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/node.cc b/src/node.cc
index 1fec85aa793..290d36d2d20 100644
--- a/src/node.cc
+++ b/src/node.cc
@@ -35,6 +35,7 @@
#include "node_options-inl.h"
#include "node_perf.h"
#include "node_process.h"
+#include "node_report.h"
#include "node_revert.h"
#include "node_v8_platform-inl.h"
#include "node_version.h"
@@ -67,10 +68,6 @@
#include "large_pages/node_large_page.h"
-#ifdef NODE_REPORT
-#include "node_report.h"
-#endif
-
#if defined(__APPLE__) || defined(__linux__)
#define NODE_USE_V8_WASM_TRAP_HANDLER 1
#else
@@ -781,11 +778,9 @@ int InitializeNodeWithArgs(std::vector<std::string>* argv,
// Make inherited handles noninheritable.
uv_disable_stdio_inheritance();
-#ifdef NODE_REPORT
// Cache the original command line to be
// used in diagnostic reports.
per_process::cli_options->cmdline = *argv;
-#endif // NODE_REPORT
#if defined(NODE_V8_OPTIONS)
// Should come before the call to V8::SetFlagsFromCommandLine()