Skip to content

Commit

Permalink
change concept
Browse files Browse the repository at this point in the history
  • Loading branch information
cvarni committed Oct 31, 2024
1 parent 63fb450 commit 1b0400f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Core/include/Acts/Seeding/SeedFilter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
#include <vector>

namespace Acts {
template <typename Coll, typename external_t, std::size_t N = 3ul>
concept CollectionStoresSeedsTo = requires(Coll coll, external_t sp) {
Acts::detail::pushBackOrInsertAtEnd(coll,
Acts::Seed<external_t, N>(sp, sp, sp));
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);
};

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

0 comments on commit 1b0400f

Please sign in to comment.