Skip to content

Commit

Permalink
src: fix -Wunreachable-code-return error
Browse files Browse the repository at this point in the history
PR-URL: #40034
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
  • Loading branch information
codebytere authored and BethGriggs committed Sep 21, 2021
1 parent 6d399e1 commit cfcd571
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/inspector_agent.cc
Expand Up @@ -87,7 +87,6 @@ inline void* StartIoThreadMain(void* unused) {
if (agent != nullptr)
agent->RequestIoThreadStart();
}
return nullptr;
}

static int StartDebugSignalHandler() {
Expand Down
1 change: 0 additions & 1 deletion src/node_url.cc
Expand Up @@ -600,7 +600,6 @@ std::string URLHost::ToString() const {
case HostType::H_DOMAIN:
case HostType::H_OPAQUE:
return value_.domain_or_opaque;
break;
case HostType::H_IPV4: {
dest.reserve(15);
uint32_t value = value_.ipv4;
Expand Down

0 comments on commit cfcd571

Please sign in to comment.