0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-03-05 14:06:27 -05:00

refactor: Refactored RequestMethodString function to follow developer notes

Removed the default case in the switch statement in order to comply with the Developer Notes
This commit is contained in:
JoaoAJMatos 2022-12-08 17:40:02 +00:00
parent 7fd3b9491b
commit 8f5c560e11

View file

@ -198,9 +198,10 @@ std::string RequestMethodString(HTTPRequest::RequestMethod m)
return "HEAD";
case HTTPRequest::PUT:
return "PUT";
default:
case HTTPRequest::UNKNOWN:
return "unknown";
}
} // no default case, so the compiler can warn about missing cases
assert(false);
}
/** HTTP request callback */