Skip to content

Commit

Permalink
src: apply modernize-use-nullptr in node_win32_etw_provider.cc
Browse files Browse the repository at this point in the history
PR-URL: #27263
Reviewed-By: Richard Lau <[email protected]>
Reviewed-By: Ruben Bridgewater <[email protected]>
Reviewed-By: Anna Henningsen <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Refael Ackermann <[email protected]>
  • Loading branch information
gengjiawen authored and refack committed Apr 22, 2019
1 parent 94adfe9 commit 8eaf311
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node_win32_etw_provider.cc
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ void CodeAddressNotification(const JitCodeEvent* jevent) {
}
break;
case JitCodeEvent::CODE_REMOVED:
NODE_V8SYMBOL_REMOVE(jevent->code_start, 0);
NODE_V8SYMBOL_REMOVE(jevent->code_start, nullptr);
break;
case JitCodeEvent::CODE_MOVED:
NODE_V8SYMBOL_MOVE(jevent->code_start, jevent->new_code_start);
Expand Down

0 comments on commit 8eaf311

Please sign in to comment.