-
Notifications
You must be signed in to change notification settings - Fork 168
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: MultiTrajectory specialize DynamicColumn for bool #1730
fix: MultiTrajectory specialize DynamicColumn for bool #1730
Conversation
As vector is specialized on bool, which prevents getting references to the underlying bool mechanisms, we have to specialize `DynamiColumn` to break this specialization of vector.
📊 Physics performance monitoring for 37e33a7Full report VertexingSeedingCKFAmbiguity resolutionTruth tracking (Kalman Filter)Truth tracking (GSF) |
There are no references to the |
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.
Looks good!
Codecov Report
@@ Coverage Diff @@
## main #1730 +/- ##
==========================================
- Coverage 49.27% 49.27% -0.01%
==========================================
Files 398 398
Lines 21763 21764 +1
Branches 9874 9875 +1
==========================================
Hits 10724 10724
Misses 4174 4174
- Partials 6865 6866 +1
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
…1730) As vector is specialized on bool, which prevents getting references to the underlying bool mechanisms, we have to specialize `DynamiColumn` to break this specialization of vector. I'm also rolling in another small const-correctness fix to dynamic columns into this PR.
…1730) As vector is specialized on bool, which prevents getting references to the underlying bool mechanisms, we have to specialize `DynamiColumn` to break this specialization of vector. I'm also rolling in another small const-correctness fix to dynamic columns into this PR.
As vector is specialized on bool, which prevents getting references to the underlying bool mechanisms, we have to specialize
DynamiColumn
to break this specialization of vector.I'm also rolling in another small const-correctness fix to dynamic columns into this PR.