On Tue, May 07, 2019 1, Sergei Shtylyov wrote:
> Don't you remember another rule: use {} in all branches if at least
> one branch uses {}?
Ah, I see it now.
Documentation/process/coding-style.rst:
This does not apply if only one branch of a conditional statement is a single
statement; in the latter case use braces in both branches:
.. code-block:: c
if (condition) {
do_this();
do_that();
} else {
otherwise();
}
I will change it.
Thanks!
Chris
