-
-
Notifications
You must be signed in to change notification settings - Fork 66
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
Address Clang warnings #595
Conversation
Signed-off-by: Michal Siedlaczek <michal@siedlaczek.me>
Signed-off-by: Michal Siedlaczek <michal@siedlaczek.me>
Signed-off-by: Michal Siedlaczek <michal@siedlaczek.me>
We construct codecs as a shared pointer to `BlockCodec` and without a virtual destructor, only the destructor of the base class is called. This has not caused any real issues because the codecs do not do any memory management, but this is now for correctness and future-proofing. Signed-off-by: Michal Siedlaczek <michal@siedlaczek.me>
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #595 +/- ##
=======================================
Coverage 93.84% 93.84%
=======================================
Files 81 81
Lines 3897 3897
=======================================
Hits 3657 3657
Misses 240 240 ☔ View full report in Codecov by Sentry. |
Signed-off-by: Michal Siedlaczek <michal@siedlaczek.me>
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.
Sorry this took so long 🎄
Thanks @JMMackenzie no worries, I figured you're busy over the holidays, as was I ;) |
Fixes related to Clang warnings. See individual commit messages for more details for each.