From e4773ec80f3be5e3270b657b0fc47f7bd70e21ea Mon Sep 17 00:00:00 2001 From: jmcarcell Date: Wed, 9 Oct 2024 10:42:47 +0200 Subject: [PATCH] Fix pre-commit --- k4FWCore/components/UniqueIDGenSvc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k4FWCore/components/UniqueIDGenSvc.cpp b/k4FWCore/components/UniqueIDGenSvc.cpp index d108594d..c6a1a677 100644 --- a/k4FWCore/components/UniqueIDGenSvc.cpp +++ b/k4FWCore/components/UniqueIDGenSvc.cpp @@ -50,7 +50,7 @@ size_t UniqueIDGenSvc::getUniqueID(uint32_t evt_num, uint32_t run_num, const std combined_bits[i] = name_bits[i]; } - auto hash = std::hash>{}(combined_bits); + auto hash = std::hash>{}(combined_bits); std::lock_guard lock(m_mutex); if (m_uniqueIDs.contains(hash)) { warning() << "Event number " << evt_num << ", run number " << run_num << " and algorithm name \"" << name