-
Notifications
You must be signed in to change notification settings - Fork 52
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
Add concepts and concrete types where possible for BlockZipperJoinImpl
#1625
base: master
Are you sure you want to change the base?
Conversation
if (allBlocksWereFilled) { | ||
blockStatus = BlockStatus::allFilled; | ||
} | ||
}; |
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.
Here, self
is swapped with this
AD_CORRECTNESS_CHECK(!lessThan_(lastProcessedElement, | ||
std::as_const(blocks.front()).back())); | ||
AD_CORRECTNESS_CHECK( | ||
!lessThan_(lastProcessedElement, blocks.front().back())); |
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.
Here as_const
is dropped. This presumably works because of recent fixes to the IdTable
class.
Conformance check passed ✅No test result changes. |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #1625 +/- ##
==========================================
- Coverage 89.28% 89.28% -0.01%
==========================================
Files 374 374
Lines 35608 35613 +5
Branches 4019 4019
==========================================
+ Hits 31792 31796 +4
Misses 2520 2520
- Partials 1296 1297 +1 ☔ View full report in Codecov by Sentry. 🚨 Try these New Features:
|
Quality Gate passedIssues Measures |
Just a small follow-up to #1616 that narrows down types where possible to avoid having to guess which type is used.
Not quite sure if the "SameAsAny" stuff helps readability though.