Skip to content

Commit

Permalink
Fix pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Oct 9, 2024
1 parent 6bd9999 commit c8fb1e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion k4FWCore/components/UniqueIDGenSvc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ size_t UniqueIDGenSvc::getUniqueID(uint32_t evt_num, uint32_t run_num, const std
combined_bits[i + bits32 + bits32 + bitsSizeT] = seed_bits[i];
}

auto hash = std::hash<std::bitset<bits64 + bits32 + bits32 + bitsSizeT>>{}(combined_bits);
auto hash = std::hash<std::bitset<bits64 + bits32 + bits32 + bitsSizeT>>{}(combined_bits);
bool inserted = false;
{
std::lock_guard<std::mutex> lock(m_mutex);
Expand Down

0 comments on commit c8fb1e2

Please sign in to comment.