Patch by Adam Strzelecki, thank you!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@208882
91177308-0d34-0410-b5e6-
96231b3b80d8
If ``true``, spaces may be inserted into '()'.
**SpacesBeforeTrailingComments** (``unsigned``)
- The number of spaces before trailing line comments (//-comments).
+ The number of spaces before trailing line comments
+ (``//`` - comments).
- This does not affect trailing block comments (/**/-comments) as those
+ This does not affect trailing block comments (``/**/`` - comments) as those
commonly have different usage patterns and a number of special cases.
**SpacesInAngles** (``bool``)
/// \brief The indentation used for namespaces.
NamespaceIndentationKind NamespaceIndentation;
- /// \brief The number of spaces before trailing line comments (//-comments).
+ /// \brief The number of spaces before trailing line comments
+ /// (\c // - comments).
///
- /// This does not affect trailing block comments (/**/-comments) as those
+ /// This does not affect trailing block comments (\c /**/ - comments) as those
/// commonly have different usage patterns and a number of special cases.
unsigned SpacesBeforeTrailingComments;