On 11/27/18 5:57 AM, Jakub Jelinek wrote:
On Mon, Nov 26, 2018 at 10:59:47AM -0700, Martin Sebor wrote:
--- htdocs/codingconventions.html 30 Sep 2018 14:38:46 -0000 1.85
+++ htdocs/codingconventions.html 26 Nov 2018 17:59:21 -0000
@@ -803,12 +803,17 @@
<td><code>- x</code></td>
</tr><tr>
<td class="left">cast</td>
- <td class="right"><code>(foo) x</code></td>
- <td><code>(foo)x</code></td>
+ <td class="right"><code>(type) x</code></td>
+ <td><code>(type)x</code></td>
</tr><tr>
- <td class="left">pointer dereference</td>
- <td class="right"><code>*x</code></td>
- <td><code>* x</code></td>
Why have you removed the pointer dereference case, rather than just added
the new cases and replaced foo with type for cast? We want people to write
*x rather than * x.
Whoops, that was unintentional. I just restored it.
Martin