Files
2025-02-05 04:43:28 +00:00

9 lines
256 B
HTML

<html>
<body>
Reports odd-even checks of the following form: <code>x % 2 == 1</code>.
Such checks fail when used with negative odd values.
Consider using <code>x % 2 != 0</code> or <code>(x & 1) == 1</code> instead.
<!-- tooltip end -->
<p>
</body>
</html>