clang-format: update latest spec and reformat
Copy the latest format file from the docs repository and apply.
Change-Id: I70b8c852ae068e5d000fbf1fdfcd8a728ade9a16
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/functor.hpp b/functor.hpp
index 726c943..ca5db90 100644
--- a/functor.hpp
+++ b/functor.hpp
@@ -110,8 +110,8 @@
}
/** @brief Create objects action. */
-inline auto
- createObjects(std::map<sdbusplus::message::object_path, Object>&& objs)
+inline auto createObjects(
+ std::map<sdbusplus::message::object_path, Object>&& objs)
{
return [=](auto&, auto& m) { m.createObjects(objs); };
}
@@ -193,8 +193,8 @@
PropertyChangedCondition() = delete;
~PropertyChangedCondition() = default;
PropertyChangedCondition(const PropertyChangedCondition&) = default;
- PropertyChangedCondition&
- operator=(const PropertyChangedCondition&) = default;
+ PropertyChangedCondition& operator=(const PropertyChangedCondition&) =
+ default;
PropertyChangedCondition(PropertyChangedCondition&&) = default;
PropertyChangedCondition& operator=(PropertyChangedCondition&&) = default;
PropertyChangedCondition(const char* iface, const char* property,