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/utilInterface.hpp b/utilInterface.hpp
index 0d13b7d..14c821c 100644
--- a/utilInterface.hpp
+++ b/utilInterface.hpp
@@ -15,9 +15,7 @@
class UtilityInterface
{
public:
- virtual ~UtilityInterface()
- {
- }
+ virtual ~UtilityInterface() {}
virtual std::string readBusProperty(const std::string& obj,
const std::string& inf,
@@ -27,9 +25,7 @@
class utility : public UtilityInterface
{
public:
- virtual ~utility()
- {
- }
+ virtual ~utility() {}
std::string readBusProperty(const std::string& obj, const std::string& inf,
const std::string& prop) override