-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[MISC] Update range library #1702
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is no code to review here... but I see that the builds fail. So I put the red light for now...
Current build failure was introduced in ericniebler/range-v3@6103268. |
Codecov Report
@@ Coverage Diff @@
## master #1702 +/- ##
=======================================
Coverage 97.68% 97.68%
=======================================
Files 238 238
Lines 9066 9066
=======================================
Hits 8856 8856
Misses 210 210 Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for fixing it! One comment:
In this case the construction of (`views::persist | views::convert`) relied on some implicit conversion instead of using the target type directly.
In ericniebler/range-v3#1455 the range-v3 library harmonises range-v3 with C++20's `std::ranges`. One of these changes is the behaviour of `std::ranges::enable_view`. This change is needed for seqan#1680 that will simplify code regarding the `seqan3::gap_decorator`.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
In ericniebler/range-v3#1455 the range-v3 library
harmonises range-v3 with C++20's
std::ranges
. One of these changes isthe behaviour of
std::ranges::enable_view
.This change is needed for #1680 that will simplify code regarding the
seqan3::gap_decorator
.