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: I6083e412d8356a97b5213a138f370bfeb43a69b3
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/dbus.cpp b/dbus.cpp
index 49e0e03..d5fdd69 100644
--- a/dbus.cpp
+++ b/dbus.cpp
@@ -90,11 +90,10 @@
{
auto s = std::find_if(services->second.begin(), services->second.end(),
[&interface](const auto& entry) {
- auto i =
- std::find(entry.second.begin(),
- entry.second.end(), interface);
- return i != entry.second.end();
- });
+ auto i = std::find(entry.second.begin(), entry.second.end(),
+ interface);
+ return i != entry.second.end();
+ });
if (s != services->second.end())
{
service = s->first;