Closed kyle-cochran closed 3 months ago
Attention: Patch coverage is 0%
with 1 line
in your changes missing coverage. Please review.
Project coverage is 81.24%. Comparing base (
b322354
) to head (e23f0ac
).
Files | Patch % | Lines |
---|---|---|
src/OpenSpaceToolkit/Physics/Coordinate/Axes.cpp | 0.00% | 1 Missing :warning: |
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Fixes a small potential undefined behavior that I saw the compiler complaining about:
If the second part of the
&&
were ever reached, we would get undefined behavior and likely a crash. Not a huge deal since the code is about to throw an error anyway, but would probably be confusing.