Add readability-redundant-* checks
There's a number of redundancies in our code that clang can sanitize
out. Fix the existing problems, and enable the checks.
Signed-off-by: Ed Tanous <edtanous@google.com>
Change-Id: Ie63d7b7f0777b702fbf1b23a24e1bed7b4f5183b
diff --git a/redfish-core/lib/virtual_media.hpp b/redfish-core/lib/virtual_media.hpp
index d646698..ab27fc7 100644
--- a/redfish-core/lib/virtual_media.hpp
+++ b/redfish-core/lib/virtual_media.hpp
@@ -133,7 +133,7 @@
}
aResp->res.jsonValue["Inserted"] = *activeValue;
- if (*activeValue == true)
+ if (*activeValue)
{
aResp->res.jsonValue["ConnectedVia"] = "Applet";
}
@@ -400,7 +400,7 @@
}
// optional param inserted must be true
- if ((inserted != std::nullopt) && (*inserted != true))
+ if ((inserted != std::nullopt) && !*inserted)
{
BMCWEB_LOG_ERROR
<< "Request action optional parameter Inserted must be true.";
@@ -814,7 +814,7 @@
actionParams.inserted, actionParams.transferMethod,
actionParams.transferProtocolType);
- if (paramsValid == false)
+ if (!paramsValid)
{
return;
}