16 lines
340 B
Plaintext
16 lines
340 B
Plaintext
include::../description.adoc[]
|
|
|
|
include::../noncompliant.adoc[]
|
|
|
|
include::../compliant.adoc[]
|
|
|
|
== Exceptions
|
|
|
|
Use of comma operator is tolerated:
|
|
* in initialization and increment expressions of <code>for</code> loops.
|
|
----
|
|
for(i = 0, j = 5; i < 6; i++, j++) { ... }
|
|
----
|
|
|
|
* If the expression sequence is explicitly wrapped in parentheses.
|