Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ea2d661

Browse filesBrowse files
addaleaxFishrock123
authored andcommitted
src: fix --without-inspector build
Use `HAVE_INSPECTOR` as the 0/1 boolean macro that it is, as opposed to a defined/not-defined boolean. PR-URL: #7078 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
1 parent c1bd3fe commit ea2d661
Copy full SHA for ea2d661

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Open diff view settings
Collapse file

‎src/signal_wrap.cc‎

Copy file name to clipboardExpand all lines: src/signal_wrap.cc
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class SignalWrap : public HandleWrap {
6565
SignalWrap* wrap;
6666
ASSIGN_OR_RETURN_UNWRAP(&wrap, args.Holder());
6767
int signum = args[0]->Int32Value();
68-
#if defined(__POSIX__) && defined(HAVE_INSPECTOR)
68+
#if defined(__POSIX__) && HAVE_INSPECTOR
6969
if (signum == SIGPROF) {
7070
Environment* env = Environment::GetCurrent(args);
7171
if (env->inspector_agent()->IsStarted()) {

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.