24-10-2009, 04:18 PM
The code in the normative text of rule 16.9 is:
Maybe it should be:
Note - the opening brace was inside the comment.
A trivial error but maybe it should get corrected?
Code:
if (f) /* not compliant - gives a constant non-zero value which is
{ the address of f - use either f() or &f */
/* ... */
}
Code:
if (f) /* not compliant - gives a constant non-zero value which is
the address of f - use either f() or &f */
{
/* ... */
}
Note - the opening brace was inside the comment.
A trivial error but maybe it should get corrected?
<t></t>