Skip to content

Commit

Permalink
Merge pull request seqan#3095 from eseiler/fix/redundant_mov
Browse files Browse the repository at this point in the history
[FIX] Redundant move
  • Loading branch information
smehringer authored Nov 7, 2022
2 parents 13f13d2 + df496c8 commit 5ef20c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/seqan3/io/views/detail/take_exactly_view.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ class view_take_exactly<urng_t, or_throw>::basic_iterator :
~basic_iterator() = default; //!< Defaulted.

//!\brief Constructor that delegates to the CRTP layer.
constexpr basic_iterator(base_base_t const & it) noexcept(noexcept(base_t{it})) : base_t{std::move(it)}
constexpr basic_iterator(base_base_t it) noexcept(noexcept(base_t{it})) : base_t{std::move(it)}
{}

//!\brief Constructor that delegates to the CRTP layer and initialises the members.
Expand Down

0 comments on commit 5ef20c7

Please sign in to comment.