Skip to content

Commit

Permalink
rvalue
Browse files Browse the repository at this point in the history
  • Loading branch information
cvarni committed Oct 31, 2024
1 parent 1b0400f commit 8c064b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/include/Acts/Seeding/SeedFilter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ namespace Acts {
template <typename collection_t, typename external_t, std::size_t N = 3ul>
concept CollectionStoresSeedsTo =
requires(collection_t coll, Acts::Seed<external_t, N> seed) {
Acts::detail::pushBackOrInsertAtEnd(coll, seed);
Acts::detail::pushBackOrInsertAtEnd(coll, std::move(seed));
};

template <typename Coll, typename external_t, std::size_t N = 3ul>
Expand Down

0 comments on commit 8c064b5

Please sign in to comment.