From 992f3dc6907fb4dc3bf5fa96dbaba94f4b8a045b Mon Sep 17 00:00:00 2001 From: yhirose Date: Fri, 3 Apr 2020 09:33:29 -0400 Subject: [PATCH] Code cleanup --- httplib.h | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/httplib.h b/httplib.h index 3077e55..9a4db03 100644 --- a/httplib.h +++ b/httplib.h @@ -4032,17 +4032,16 @@ inline bool Client::process_request(Stream &strm, const Request &req, // Body if (req.method != "HEAD" && req.method != "CONNECT") { - ContentReceiver out = [&](const char *buf, size_t n) { - if (res.body.size() + n > res.body.max_size()) { return false; } - res.body.append(buf, n); - return true; - }; - - if (req.content_receiver) { - out = [&](const char *buf, size_t n) { - return req.content_receiver(buf, n); - }; - } + auto out = + req.content_receiver + ? static_cast([&](const char *buf, size_t n) { + return req.content_receiver(buf, n); + }) + : static_cast([&](const char *buf, size_t n) { + if (res.body.size() + n > res.body.max_size()) { return false; } + res.body.append(buf, n); + return true; + }); int dummy_status; if (!detail::read_content(strm, res, (std::numeric_limits::max)(),