-
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
[FIX] seqan3::views::single_pass_input::iterator::operator++(int) must return void (real cxx20 std::input_iterator) #2775
Conversation
This pull request is being automatically deployed with Vercel (learn more). 🔍 Inspect: https://vercel.com/seqan/seqan3/D3Qk2REEawttzBfFdy48hzFR52Va |
Codecov Report
@@ Coverage Diff @@
## master #2775 +/- ##
==========================================
- Coverage 98.37% 98.37% -0.01%
==========================================
Files 272 272
Lines 10884 10881 -3
==========================================
- Hits 10707 10704 -3
Misses 177 177
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.
I added a commit to change the documentation (and resolved some conflict with renaming)
…g iterator returns void
…ing iterator returns void
…t return void (real cxx20 std::input_iterator) https://github.com/rrahn/seqan3/blame/939bea75ab00f254ac0c172506f761a2ff6f51eb/include/seqan3/range/view/single_pass_input.hpp#L262-L272 added this change; it is broken, because the semantic of output_iterator can't be fulfilled `*it++ = value` should have the same semantic as `*i = value; ++i`, but it currently has `++i; *i = value`.
…st return void (real cxx20 std::input_iterator)
…st return void (real cxx20 std::input_iterator)
…st return void (real cxx20 std::input_iterator)
No description provided.