[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang-tools-extra / docs / clang-tidy / checks / readability / braces-around-statements.rst
blob2c0816591eb98061162bb5b8aa43d3a8bb1d8057
1 .. title:: clang-tidy - readability-braces-around-statements
3 readability-braces-around-statements
4 ====================================
6 `google-readability-braces-around-statements` redirects here as an alias for
7 this check.
9 Checks that bodies of ``if`` statements and loops (``for``, ``do while``, and
10 ``while``) are inside braces.
12 Before:
14 .. code-block:: c++
16   if (condition)
17     statement;
19 After:
21 .. code-block:: c++
23   if (condition) {
24     statement;
25   }
27 Options
28 -------
30 .. option:: ShortStatementLines
32    Defines the minimal number of lines that the statement should have in order
33    to trigger this check.
35    The number of lines is counted from the end of condition or initial keyword
36    (``do``/``else``) until the last line of the inner statement. Default value
37    `0` means that braces will be added to all statements (not having them
38    already).