clang-format: copy latest and re-format
clang-format-17 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: I35d3ba19f100c4f2f0a924af86454a5fabeae03c
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/manager.cpp b/manager.cpp
index b462c82..ba019d4 100644
--- a/manager.cpp
+++ b/manager.cpp
@@ -245,10 +245,9 @@
GenericBlobInterface* BlobManager::getHandler(const std::string& path)
{
/* Find a handler. */
- auto h = std::find_if(handlers.begin(), handlers.end(),
- [&path](const auto& iter) {
- return (iter->canHandleBlob(path));
- });
+ auto h = std::find_if(
+ handlers.begin(), handlers.end(),
+ [&path](const auto& iter) { return (iter->canHandleBlob(path)); });
if (h != handlers.end())
{
return h->get();