From 02cad96e3a83b0c9a01dbc87219c1b8b6681fa67 Mon Sep 17 00:00:00 2001 From: Ed Tanous Date: Thu, 30 Jun 2022 16:50:15 -0700 Subject: Fix const correctness issues cppcheck correctly notes that a lot of variables in the new code can be const. Make most of them const. Tested: WIP Signed-off-by: Ed Tanous Change-Id: I8f37b6353fd707923f533e1d61c5b5419282bf23 --- http/http_client.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'http/http_client.hpp') diff --git a/http/http_client.hpp b/http/http_client.hpp index 63c2611a2d..f59438be8c 100644 --- a/http/http_client.hpp +++ b/http/http_client.hpp @@ -632,7 +632,7 @@ class HttpClient // Used as a dummy callback by sendData() in order to call // sendDataWithCallback() - static void genericResHandler(Response& res) + static void genericResHandler(const Response& res) { BMCWEB_LOG_DEBUG << "Response handled with return code: " << std::to_string(res.resultInt()); @@ -660,7 +660,7 @@ class HttpClient const boost::beast::http::verb verb, const std::string& retryPolicyName) { - std::function cb = genericResHandler; + const std::function cb = genericResHandler; sendDataWithCallback(data, id, destIP, destPort, destUri, httpHeader, verb, retryPolicyName, cb); } -- cgit v1.2.3