summaryrefslogtreecommitdiff
path: root/http/http_response.hpp
diff options
context:
space:
mode:
authorEd Tanous <edtanous@google.com>2022-07-01 01:55:45 +0300
committerEd Tanous <ed@tanous.net>2022-12-21 20:15:07 +0300
commitf8fe53e7114ab10c9059377541277739ace5c1ff (patch)
tree368784d5e265e876e05523493cf058c5d24c8240 /http/http_response.hpp
parent6dcbb8675d5c5765c3e53354b8f3b339effecd44 (diff)
downloadbmcweb-f8fe53e7114ab10c9059377541277739ace5c1ff.tar.xz
Change variable scopes
cppcheck correctly notes that a lot of our variables can be declared at more specific scopes, and in every case, it seems to be correct. Tested: Redfish service validator passes. Unit test coverage on others. Signed-off-by: Ed Tanous <edtanous@google.com> Change-Id: Ia4414410d0e8f74a3bd40fdc0e0232450d1a6416
Diffstat (limited to 'http/http_response.hpp')
-rw-r--r--http/http_response.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/http/http_response.hpp b/http/http_response.hpp
index c1f25a543c..b1b15fb362 100644
--- a/http/http_response.hpp
+++ b/http/http_response.hpp
@@ -41,9 +41,9 @@ struct Response
{}
Response(Response&& res) noexcept :
- stringResponse(std::move(res.stringResponse)), completed(res.completed)
+ stringResponse(std::move(res.stringResponse)),
+ jsonValue(std::move(res.jsonValue)), completed(res.completed)
{
- jsonValue = std::move(res.jsonValue);
// See note in operator= move handler for why this is needed.
if (!res.completed)
{