summaryrefslogtreecommitdiff
path: root/http
diff options
context:
space:
mode:
Diffstat (limited to 'http')
-rw-r--r--http/http_request.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/http/http_request.hpp b/http/http_request.hpp
index 53f51e68fd..d041b82660 100644
--- a/http/http_request.hpp
+++ b/http/http_request.hpp
@@ -82,7 +82,7 @@ struct Request
}
void method(boost::beast::http::verb verb)
{
- return req.method(verb);
+ req.method(verb);
}
std::string_view getHeaderValue(std::string_view key) const