Skip to content

Commit

Permalink
var name
Browse files Browse the repository at this point in the history
  • Loading branch information
eseiler committed Aug 1, 2024
1 parent cc21005 commit bb9edea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/seqan3/alignment/matrix/detail/debug_matrix.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ struct alignment_matrix_printer<alignment_matrix_t>
requires detail::is_type_specialisation_of_v<stream_t, debug_stream_type>
constexpr void operator()(stream_t & stream, arg_t && arg) const
{
print_impl(stream.get_underlying_stream(), stream.flags2(), std::forward<arg_t>(matrix));
print_impl(stream.get_underlying_stream(), stream.flags2(), std::forward<arg_t>(arg));
}

/*!\brief Prints the alignment matrix into the given stream using ascii formatting.
Expand All @@ -510,7 +510,7 @@ struct alignment_matrix_printer<alignment_matrix_t>
template <typename stream_t, typename arg_t>
constexpr void operator()(stream_t & stream, arg_t && arg) const
{
print_impl(stream, fmtflags2::none, std::forward<arg_t>(matrix));
print_impl(stream, fmtflags2::none, std::forward<arg_t>(arg));
}

private:
Expand Down

0 comments on commit bb9edea

Please sign in to comment.