-
Notifications
You must be signed in to change notification settings - Fork 536
Conversation
Codecov Report
@@ Coverage Diff @@
## develop #668 +/- ##
===========================================
- Coverage 48.65% 48.61% -0.05%
===========================================
Files 112 112
Lines 15364 15378 +14
===========================================
Hits 7476 7476
- Misses 7254 7268 +14
Partials 634 634
📣 Codecov can now indicate which changes are the most critical in Pull Requests. Learn more |
Thank you for the heads up on the code simplification 🙏 Arrays are assignable by value, no need to do deep copy on them since we get that out of the box: |
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.
The code looks good.
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.
Great catch, thank you for this PR :D
I would maybe only add a unit test that covers Copy method
Description
This PR resolves a steady memory creep that has been noted in the
Header.Copy()
method.After the fix:
Changes include
Checklist
Testing
Additional comments
Fixes EDGE-698