You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Found strange code
if (position > HexPosition.MaxEndPosition) has already judged a case greater than HexPosition.MaxEndPosition, and then if (position >= HexPosition.MaxEndPosition) has judged again
So the last statement is equivalent to position == HexPosition.MaxEndPosition. Though it's not really a problem. One could argue that saying "anything above, and including, max position is invalid" is more expressive.
Found strange code
if (position > HexPosition.MaxEndPosition) has already judged a case greater than HexPosition.MaxEndPosition, and then if (position >= HexPosition.MaxEndPosition) has judged again
dnSpy/dnSpy/dnSpy/Hex/Intellisense/HexToolTipService.cs
Lines 248 to 253 in 81d73ec
The text was updated successfully, but these errors were encountered: