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; }