We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95a36c5 commit ac39a54Copy full SHA for ac39a54
1 file changed
Framework/AnalysisSupport/src/AODWriterHelpers.cxx
@@ -500,7 +500,7 @@ AlgorithmSpec AODWriterHelpers::getMetadataCollector(ConfigContext const& /*ctx*
500
TObject* value = part->GetValue(key);
501
std::string k = key->GetName();
502
std::string v = value != nullptr ? value->GetName() : "";
503
- auto it = std::find_if(merged->begin(), merged->end(),
+ auto it = std::ranges::find_if(merged,
504
[&k](auto const& e) { return e.first == k; });
505
if (it != merged->end()) {
506
it->second = std::move(v);
0 commit comments