diff --git a/k4FWCore/components/UniqueIDGenSvc.cpp b/k4FWCore/components/UniqueIDGenSvc.cpp index b93c2598..f92132d1 100644 --- a/k4FWCore/components/UniqueIDGenSvc.cpp +++ b/k4FWCore/components/UniqueIDGenSvc.cpp @@ -28,9 +28,9 @@ constexpr size_t bits64 = std::numeric_limits::digits; constexpr size_t bitsSizeT = std::numeric_limits::digits; size_t UniqueIDGenSvc::getUniqueID(uint32_t evt_num, uint32_t run_num, const std::string& name) const { - std::bitset seed_bits = this->m_seed.value(); + std::bitset seed_bits = this->m_seed.value(); std::bitset event_num_bits = evt_num, run_num_bits = run_num; - size_t str_hash = std::hash{}(name); + size_t str_hash = std::hash{}(name); std::bitset name_bits = str_hash; std::bitset combined_bits;