Closed Lichtso closed 3 months ago
Attention: Patch coverage is 85.71429%
with 1 line
in your changes missing coverage. Please review.
Project coverage is 90.01%. Comparing base (
a996494
) to head (ff194ed
). Report is 3 commits behind head on main.
Files | Patch % | Lines |
---|---|---|
src/elf.rs | 80.00% | 1 Missing :warning: |
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Turns the two explicit flags into a range to describe the enabled
SBPFVersion
s in theConfig
in anticipation of there being a lot moreSBPFVersion
s.Config::enabled_sbpf_versions
is a range and not a set because in some places we need to know the highest enabledSBPFVersion
. Also, because features are enabled for ranges of versions themselves, it makes little sense to leave out versions in the middle of a range, so sets are needlessly verbose.