ProcSummary: Use Nothrow

Exceptions are compiled out, and json.get throws, change
it to get_ptr.

Tested: no functional change

Change-Id: Ie2db7285b89b45b1fd61d8526561b772c85151b3
Signed-off-by: James Feist <james.feist@linux.intel.com>
diff --git a/redfish-core/lib/systems.hpp b/redfish-core/lib/systems.hpp
index 93eb403..e9ccde1 100644
--- a/redfish-core/lib/systems.hpp
+++ b/redfish-core/lib/systems.hpp
@@ -82,13 +82,18 @@
     }
     BMCWEB_LOG_DEBUG << "Cpu Present: " << *isCpuPresent;
 
-    nlohmann::json &procCount =
-        aResp->res.jsonValue["ProcessorSummary"]["Count"];
     if (*isCpuPresent == true)
     {
-        procCount = procCount.get<int>() + 1;
+        nlohmann::json &procCount =
+            aResp->res.jsonValue["ProcessorSummary"]["Count"];
+        auto procCountPtr =
+            procCount.get_ptr<nlohmann::json::number_integer_t *>();
+        if (procCountPtr != nullptr)
+        {
+            // shouldn't be possible to be nullptr
+            *procCountPtr += 1;
+        }
     }
-    aResp->res.jsonValue["ProcessorSummary"]["Count"] = procCount;
 }
 
 /*
@@ -338,9 +343,18 @@
                                                                  "ary"];
                                                     nlohmann::json &procCount =
                                                         procSummary["Count"];
-                                                    procCount =
-                                                        procCount.get<int>() +
-                                                        1;
+
+                                                    auto procCountPtr =
+                                                        procCount.get_ptr<
+                                                            nlohmann::json::
+                                                                number_integer_t
+                                                                    *>();
+                                                    if (procCountPtr != nullptr)
+                                                    {
+                                                        // shouldn't be possible
+                                                        // to be nullptr
+                                                        *procCountPtr += 1;
+                                                    }
                                                     procSummary["Status"]
                                                                ["State"] =
                                                                    "Enabled";