From 1ddd2ced26faa47783202ab7a251d403b6852fcb Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Wed, 18 Jun 2025 11:12:17 +0000 Subject: [PATCH] Please consider the following formatting changes --- Framework/Core/include/Framework/AnalysisManagers.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Framework/Core/include/Framework/AnalysisManagers.h b/Framework/Core/include/Framework/AnalysisManagers.h index 44c0346bec800..3d963d54643d5 100644 --- a/Framework/Core/include/Framework/AnalysisManagers.h +++ b/Framework/Core/include/Framework/AnalysisManagers.h @@ -588,7 +588,7 @@ bool registerCache(T& preslice, Cache&, Cache& bsksU) template bool registerCache(T& presliceGroup, Cache& bsks, Cache& bsksU) { - homogeneous_apply_refs([&bsks, &bsksU](auto& preslice){ return registerCache(preslice, bsks, bsksU); }, presliceGroup); + homogeneous_apply_refs([&bsks, &bsksU](auto& preslice) { return registerCache(preslice, bsks, bsksU); }, presliceGroup); return true; } @@ -628,7 +628,7 @@ static bool updateSliceInfo(T& preslice, ArrowTableSlicingCache& cache) template static bool updateSliceInfo(T& presliceGroup, ArrowTableSlicingCache& cache) { - homogeneous_apply_refs([&cache](auto& preslice){ return updateSliceInfo(preslice, cache); }, presliceGroup); + homogeneous_apply_refs([&cache](auto& preslice) { return updateSliceInfo(preslice, cache); }, presliceGroup); return true; }