Remove custom version of getPtr
Now that sdbusplus variant supports std::get_if, we can remove our
custom, mapbox namespaced implementation that does the same thing.
Change-Id: I854c473003e28e41dd45dba08ca683433f1c1774
Signed-off-by: Ed Tanous <ed.tanous@intel.com>
diff --git a/redfish-core/lib/account_service.hpp b/redfish-core/lib/account_service.hpp
index aba69c1..a93407a 100644
--- a/redfish-core/lib/account_service.hpp
+++ b/redfish-core/lib/account_service.hpp
@@ -317,8 +317,8 @@
if (property.first == "UserEnabled")
{
const bool* userEnabled =
- mapbox::getPtr<const bool>(
- property.second);
+ sdbusplus::message::variant_ns::
+ get_if<bool>(&property.second);
if (userEnabled == nullptr)
{
BMCWEB_LOG_ERROR
@@ -332,8 +332,8 @@
"UserLockedForFailedAttempt")
{
const bool* userLocked =
- mapbox::getPtr<const bool>(
- property.second);
+ sdbusplus::message::variant_ns::
+ get_if<bool>(&property.second);
if (userLocked == nullptr)
{
BMCWEB_LOG_ERROR