clang-format: copy latest and re-format
clang-format-16 has some backwards incompatible changes that require
additional settings for best compatibility and re-running the formatter.
Copy the latest .clang-format from the docs repository and reformat the
repository.
Change-Id: Ia442cdc88aaeaab2f1384cc46a56f5cd5e40f2f5
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/common_utility.cpp b/common_utility.cpp
index 7b88b05..c1c5e4f 100644
--- a/common_utility.cpp
+++ b/common_utility.cpp
@@ -2,9 +2,10 @@
#include "const.hpp"
-#include <iostream>
#include <phosphor-logging/log.hpp>
+#include <iostream>
+
namespace openpower
{
namespace vpd
@@ -54,8 +55,8 @@
{
auto bus = sdbusplus::bus::new_default();
auto service = getService(bus, pimPath, pimIntf);
- auto pimMsg =
- bus.new_method_call(service.c_str(), pimPath, pimIntf, "Notify");
+ auto pimMsg = bus.new_method_call(service.c_str(), pimPath, pimIntf,
+ "Notify");
pimMsg.append(std::move(objects));
auto result = bus.call(pimMsg);
if (result.is_method_error())
@@ -72,4 +73,4 @@
} // namespace utility
} // namespace common
} // namespace vpd
-} // namespace openpower
\ No newline at end of file
+} // namespace openpower