2020-06-30 12:50:59 +02:00
|
|
|
include::../description.adoc[]
|
|
|
|
|
|
|
|
include::../noncompliant.adoc[]
|
|
|
|
|
|
|
|
include::../compliant.adoc[]
|
|
|
|
|
|
|
|
== Exceptions
|
|
|
|
|
|
|
|
Use of comma operator is tolerated:
|
2020-06-30 14:49:38 +02:00
|
|
|
|
2021-01-27 13:42:22 +01:00
|
|
|
* in initialization and increment expressions of ``++for++`` loops.
|
2020-06-30 14:49:38 +02:00
|
|
|
|
2020-06-30 12:50:59 +02:00
|
|
|
----
|
|
|
|
for(i = 0, j = 5; i < 6; i++, j++) { ... }
|
|
|
|
----
|
|
|
|
|
|
|
|
* If the expression sequence is explicitly wrapped in parentheses.
|