Skip to content

Commit

Permalink
[MISC] automatic linting
Browse files Browse the repository at this point in the history
  • Loading branch information
seqan-actions committed Oct 29, 2024
1 parent f8c3fac commit 742771f
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,13 @@ namespace seqan3::detail
//!\brief Helper function to deduce the unaligned sequence type from an aligned sequence container.
template <template <typename...> typename container_type, typename seq_alph_t, typename... rest_t>
requires container<container_type<gapped<seq_alph_t>, rest_t...>>
constexpr auto remove_gap_from_value_type(container_type<gapped<seq_alph_t>, rest_t...>)
-> container_type<seq_alph_t, rest_t...>;
constexpr auto
remove_gap_from_value_type(container_type<gapped<seq_alph_t>, rest_t...>) -> container_type<seq_alph_t, rest_t...>;

//!\overload
template <template <typename...> typename container_type,
template <typename...> typename allocator_type,
template <typename...>
typename allocator_type,
typename seq_alph_t,
typename... rest_t>
requires container<container_type<gapped<seq_alph_t>, allocator_type<gapped<seq_alph_t>>, rest_t...>>
Expand Down

0 comments on commit 742771f

Please sign in to comment.