@@ -3759,9 +3759,9 @@ the configuration (without a prefix: ``Auto``).
37593759 lists.
37603760
37613761 Important differences:
3762- - No spaces inside the braced list.
3763- - No line break before the closing brace.
3764- - Indentation with the continuation indent, not with the block indent.
3762+ * No spaces inside the braced list.
3763+ * No line break before the closing brace.
3764+ * Indentation with the continuation indent, not with the block indent.
37653765
37663766 Fundamentally, C++11 braced lists are formatted exactly like function
37673767 calls would be formatted in their place. If the braced list follows a name
@@ -4104,10 +4104,10 @@ the configuration (without a prefix: ``Auto``).
41044104 When guessing whether a #include is the "main" include (to assign
41054105 category 0, see above), use this regex of allowed suffixes to the header
41064106 stem. A partial match is done, so that:
4107- - "" means "arbitrary suffix"
4108- - "$" means "no suffix"
4107+ * `` "" `` means "arbitrary suffix"
4108+ * `` "$" `` means "no suffix"
41094109
4110- For example, if configured to "(_test)?$", then a header a.h would be seen
4110+ For example, if configured to `` "(_test)?$" `` , then a header a.h would be seen
41114111 as the "main" include in both a.cc and a_test.cc.
41124112
41134113.. _IncludeIsMainSourceRegex :
@@ -5313,21 +5313,21 @@ the configuration (without a prefix: ``Auto``).
53135313
53145314**QualifierOrder ** (``List of Strings ``) :versionbadge: `clang-format 14 ` :ref: `¶ <QualifierOrder >`
53155315 The order in which the qualifiers appear.
5316- Order is an array that can contain any of the following:
5316+ The order is an array that can contain any of the following:
53175317
5318- * const
5319- * inline
5320- * static
5321- * friend
5322- * constexpr
5323- * volatile
5324- * restrict
5325- * type
5318+ * `` const ``
5319+ * `` inline ``
5320+ * `` static ``
5321+ * `` friend ``
5322+ * `` constexpr ``
5323+ * `` volatile ``
5324+ * `` restrict ``
5325+ * `` type ``
53265326
53275327
53285328 .. note ::
53295329
5330- It ** must ** contain ``type ``.
5330+ It must contain ``type ``.
53315331
53325332 Items to the left of ``type `` will be placed to the left of the type and
53335333 aligned in the order supplied. Items to the right of ``type `` will be
@@ -6645,12 +6645,11 @@ the configuration (without a prefix: ``Auto``).
66456645.. _StatementMacros :
66466646
66476647**StatementMacros ** (``List of Strings ``) :versionbadge: `clang-format 8 ` :ref: `¶ <StatementMacros >`
6648- A vector of macros that should be interpreted as complete
6649- statements.
6648+ A vector of macros that should be interpreted as complete statements.
66506649
6651- Typical macros are expressions, and require a semi-colon to be
6652- added; sometimes this is not the case, and this allows to make
6653- clang-format aware of such cases.
6650+ Typical macros are expressions and require a semicolon to be added.
6651+ Sometimes this is not the case, and this allows to make clang-format aware
6652+ of such cases.
66546653
66556654 For example: Q_UNUSED
66566655
0 commit comments