mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
12 lines
389 B
HTML
12 lines
389 B
HTML
<html>
|
|
<body>
|
|
Reports <code>double</code> literal expressions that are immediately cast to <code>float</code>.
|
|
<p>Such literal expressions can be replaced with equivalent <code>float</code> literals.</p>
|
|
<p><b>Example:</b></p>
|
|
<pre><code>float f = (float)1.1;</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>float f = 1.1f;</code></pre>
|
|
<!-- tooltip end -->
|
|
</body>
|
|
</html>
|