Skip to content

Commit ac39a54

Browse files
ktfaalkin
andauthored
Update Framework/AnalysisSupport/src/AODWriterHelpers.cxx
Co-authored-by: Anton Alkin <anton.alkin@cern.ch>
1 parent 95a36c5 commit ac39a54

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Framework/AnalysisSupport/src/AODWriterHelpers.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ AlgorithmSpec AODWriterHelpers::getMetadataCollector(ConfigContext const& /*ctx*
500500
TObject* value = part->GetValue(key);
501501
std::string k = key->GetName();
502502
std::string v = value != nullptr ? value->GetName() : "";
503-
auto it = std::find_if(merged->begin(), merged->end(),
503+
auto it = std::ranges::find_if(merged,
504504
[&k](auto const& e) { return e.first == k; });
505505
if (it != merged->end()) {
506506
it->second = std::move(v);

0 commit comments

Comments
 (0)