Fix build on clang

New code was missing an inline parameter on a method.

Tested:
Code now compiles on clang.

Signed-off-by: Ed Tanous <edtanous@google.com>
Change-Id: I1256c70d37df82c92080667531e98c49b35e7d0b
diff --git a/redfish-core/lib/systems.hpp b/redfish-core/lib/systems.hpp
index b94612c..fc9ad81 100644
--- a/redfish-core/lib/systems.hpp
+++ b/redfish-core/lib/systems.hpp
@@ -2479,8 +2479,8 @@
  *
  * @return true if successful
  */
-bool parseIpsProperties(const std::shared_ptr<bmcweb::AsyncResp>& aResp,
-                        ipsPropertiesType& properties)
+inline bool parseIpsProperties(const std::shared_ptr<bmcweb::AsyncResp>& aResp,
+                               ipsPropertiesType& properties)
 {
     for (const auto& property : properties)
     {