From 34b9920c89ba5b19cf78e0be67dfa795863007dc Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Tue, 17 Mar 2026 12:37:41 +0000 Subject: [PATCH] Please consider the following formatting changes --- Detectors/TPC/calibration/src/CalibdEdx.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Detectors/TPC/calibration/src/CalibdEdx.cxx b/Detectors/TPC/calibration/src/CalibdEdx.cxx index dd2d8cff802c7..5205c9348dec7 100644 --- a/Detectors/TPC/calibration/src/CalibdEdx.cxx +++ b/Detectors/TPC/calibration/src/CalibdEdx.cxx @@ -592,7 +592,7 @@ int CalibdEdx::minStackEntries() const // find the stack with the least number of entries // use explicit int comparator to avoid ambiguous operator< between accessor and unlimited_storage::reference (boost/clang issue) auto min_it = std::min_element(dEdxCounts.begin(), dEdxCounts.end(), - [](const auto& a, const auto& b) { return static_cast(*a) < static_cast(*b); }); + [](const auto& a, const auto& b) { return static_cast(*a) < static_cast(*b); }); return *min_it; }