mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 01:43:57 +07:00
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
9 lines
256 B
HTML
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> |