Skip to content

Commit

Permalink
Please consider the following formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alibuild committed Aug 23, 2023
1 parent 2108cb2 commit 4b387e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Framework/Core/src/FairMQDeviceProxy.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ void FairMQDeviceProxy::getMatchingForwardChannelIndexes(std::vector<ChannelInde
}
// Remove duplicates, keeping the order of the channels.
std::unordered_set<int> numSet;
auto iter = std::stable_partition(result.begin(), result.end(),
auto iter = std::stable_partition(result.begin(), result.end(),
[&](ChannelIndex n) { bool ret = !numSet.count(n.value); numSet.insert(n.value); return ret; }); // returns true if the item has not been "seen"
result.erase(iter, result.end());
}
Expand Down

0 comments on commit 4b387e9

Please sign in to comment.