-
Notifications
You must be signed in to change notification settings - Fork 679
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 getRawPacketReadOnly() const-correctness #1573 #1637
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## dev #1637 +/- ##
==========================================
- Coverage 83.13% 83.13% -0.01%
==========================================
Files 276 276
Lines 47318 47318
Branches 9537 9542 +5
==========================================
- Hits 39338 39336 -2
- Misses 7110 7111 +1
- Partials 870 871 +1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
@egecetin can you fix |
Hmm I wasn't expecting this while changing clang-tidy script. It can't find header because this container doesn't have kni (or same for dpdk etc). But since the file is changed it tries to analyze it. |
@seladb I'll split PR for clang-tidy script changes if it passes. Just pushed here for testing |
This reverts commit dc3783c.
Why ignore those files altogether? Can't we just ignore those specific issues? |
@seladb There is no way to ignore clang-diagnostic-error unfortunately because it is a compile error. Old clang-tidy check was based on full compile, so these headers/source files are not checked since they are not enabled. But now it just trying to check if anything is changed |
yes, I just saw this stackoverflow response 😕 : https://stackoverflow.com/a/67487680 |
Fix #1573
Requires #1638