Browse Source

src: guard default_inspector_port

When configuring and building --without-ssl the following warning is
reported:
../src/node_debug_options.cc:12:11: warning: unused variable
'default_inspector_port' [-Wunused-const-variable]
const int default_inspector_port = 9229;

The commit adds a HAVE_INSPECTOR guard to this constant.

PR-URL: https://github.com/nodejs/node/pull/12303
Reviewed-By: cjihrig - Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
v6
Daniel Bevenius 8 years ago
parent
commit
f9bc83557d
  1. 2
      src/node_debug_options.cc

2
src/node_debug_options.cc

@ -9,7 +9,9 @@ namespace node {
namespace { namespace {
const int default_debugger_port = 5858; const int default_debugger_port = 5858;
#if HAVE_INSPECTOR
const int default_inspector_port = 9229; const int default_inspector_port = 9229;
#endif // HAVE_INSPECTOR
inline std::string remove_brackets(const std::string& host) { inline std::string remove_brackets(const std::string& host) {
if (!host.empty() && host.front() == '[' && host.back() == ']') if (!host.empty() && host.front() == '[' && host.back() == ']')

Loading…
Cancel
Save