From 1919a03c45725b9d52067d739a57db7cd6a201ae Mon Sep 17 00:00:00 2001 From: Ed Tanous Date: Wed, 3 Apr 2024 15:56:36 -0700 Subject: Fix minor error in Request::method Minor syntax error injected in: 1873a04f Reduce multi-level calls of req.req members Tested: Code compiles. Change-Id: Iec26273349df6063eb425e4a75b1250c17bc6f3f Signed-off-by: Ed Tanous --- http/http_request.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'http') 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 -- cgit v1.2.3