From c7c5f50f30a7e5f866c0ebe9ee9ec42ffd1bf15b Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Fri, 31 Jul 2026 09:55:19 +0000 Subject: [PATCH] Please consider the following formatting changes --- Framework/Core/src/Expressions.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Framework/Core/src/Expressions.cxx b/Framework/Core/src/Expressions.cxx index 667c28caf6862..912ca4169e81d 100644 --- a/Framework/Core/src/Expressions.cxx +++ b/Framework/Core/src/Expressions.cxx @@ -783,11 +783,11 @@ bool isTableCompatible(std::span hashes, Operations const& specs auto [ret, last] = std::ranges::unique(opHashes); opHashes.erase(ret, last); bool contains = true; - std::ranges::for_each(opHashes, [hashes, &contains](auto const& hash){ - contains = contains && std::ranges::any_of(hashes, [hash](auto const& h){ - return h == hash; - }); - }); + std::ranges::for_each(opHashes, [hashes, &contains](auto const& hash) { + contains = contains && std::ranges::any_of(hashes, [hash](auto const& h) { + return h == hash; + }); + }); return contains; }