Skip to content

Commit

Permalink
src: remove unprofessional slang in assertions
Browse files Browse the repository at this point in the history
Convert `CHECK(0 && "wtf?")` (sic) assertions to more suitable
`UNREACHABLE()` macro invocations in `node_zlib.cc`.

PR-URL: #17166
Reviewed-By: Anna Henningsen <[email protected]>
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Timothy Gu <[email protected]>
Reviewed-By: Gireesh Punathil <[email protected]>
Reviewed-By: Luigi Pinca <[email protected]>
Reviewed-By: Daniel Bevenius <[email protected]>
Reviewed-By: Anatoli Papirovski <[email protected]>
  • Loading branch information
aqrln authored and MylesBorins committed Dec 11, 2017
1 parent b16d570 commit 9c0c336
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/node_zlib.cc
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ class ZCtx : public AsyncWrap {
}
break;
default:
CHECK(0 && "wtf?");
UNREACHABLE();
}

// pass any errors back to the main thread to deal with.
Expand Down Expand Up @@ -550,7 +550,7 @@ class ZCtx : public AsyncWrap {
->AdjustAmountOfExternalAllocatedMemory(kInflateContextSize);
break;
default:
CHECK(0 && "wtf?");
UNREACHABLE();
}

ctx->dictionary_ = reinterpret_cast<Bytef *>(dictionary);
Expand Down

0 comments on commit 9c0c336

Please sign in to comment.