Skip to content

Commit

Permalink
[FIX] Missing range concept name update.
Browse files Browse the repository at this point in the history
  • Loading branch information
rrahn committed Sep 11, 2019
1 parent c631897 commit 0ea2159
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/seqan3/range/concept.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ SEQAN3_CONCEPT const_iterable_range =
std::ranges::input_range<type const> &&
(std::ranges::forward_range<std::remove_const_t<type>> == std::ranges::forward_range<type const>) &&
(std::ranges::bidirectional_range<std::remove_const_t<type>> == std::ranges::bidirectional_range<type const>) &&
(std::ranges::random_access_range<std::remove_const_t<type>> == std::ranges::random_access_range<type const>);
(std::ranges::random_access_range<std::remove_const_t<type>> == std::ranges::random_access_range<type const>);
//!\endcond

/*!\interface seqan3::forwarding_range<>
* \extends std::Range
* \extends std::ranges::range
* \brief Specifies a range whose iterators may outlive the range and remain valid.
* \see https://eel.is/c++draft/range.req
*/
Expand Down

0 comments on commit 0ea2159

Please sign in to comment.