summaryrefslogtreecommitdiffstats
path: root/Documentation/process
diff options
context:
space:
mode:
authorGary R Hook <gary.hook@amd.com>2018-03-14 17:21:38 -0500
committerJonathan Corbet <corbet@lwn.net>2018-03-21 09:17:09 -0600
commit1dbba2cf30c9be65287d2c83ad35db72c62890ad (patch)
treedb1e2bf73933dce05797113b68d8fd6240ed5d41 /Documentation/process
parent5a5d1a77085f9d11c0a946d164330af4d5412a66 (diff)
downloadop-kernel-dev-1dbba2cf30c9be65287d2c83ad35db72c62890ad.zip
op-kernel-dev-1dbba2cf30c9be65287d2c83ad35db72c62890ad.tar.gz
Documentation/CodingStyle: Add an example for braces
Add another example of required braces when using a compound statement in a loop. Signed-off-by: Gary R Hook <gary.hook@amd.com> Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/process')
-rw-r--r--Documentation/process/coding-style.rst9
1 files changed, 9 insertions, 0 deletions
diff --git a/Documentation/process/coding-style.rst b/Documentation/process/coding-style.rst
index a20b44a..d98deb6 100644
--- a/Documentation/process/coding-style.rst
+++ b/Documentation/process/coding-style.rst
@@ -200,6 +200,15 @@ statement; in the latter case use braces in both branches:
otherwise();
}
+Also, use braces when a loop contains more than a single simple statement:
+
+.. code-block:: c
+
+ while (condition) {
+ if (test)
+ do_something();
+ }
+
3.1) Spaces
***********
OpenPOWER on IntegriCloud