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"; return "HEAD";
case HTTPRequest::PUT: case HTTPRequest::PUT:
return "PUT"; return "PUT";
default: case HTTPRequest::UNKNOWN:
return "unknown"; return "unknown";
} } // no default case, so the compiler can warn about missing cases
assert(false);
} }
/** HTTP request callback */ /** HTTP request callback */