Skip to content
Snippets Groups Projects
Commit cb7a513b authored by Sylvestre Ledru's avatar Sylvestre Ledru
Browse files

Add an usage example of BreakBeforeBraces

Reviewers: djasper

Reviewed By: djasper

Subscribers: klimek, cfe-commits

Differential Revision: https://reviews.llvm.org/D37531

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@312717 91177308-0d34-0410-b5e6-96231b3b80d8
parent a2028619
No related branches found
No related tags found
No related merge requests found
...@@ -533,6 +533,15 @@ the configuration (without a prefix: ``Auto``). ...@@ -533,6 +533,15 @@ the configuration (without a prefix: ``Auto``).
If ``BreakBeforeBraces`` is set to ``BS_Custom``, use this to specify how If ``BreakBeforeBraces`` is set to ``BS_Custom``, use this to specify how
each individual brace case should be handled. Otherwise, this is ignored. each individual brace case should be handled. Otherwise, this is ignored.
.. code-block:: yaml
# Example of usage:
BreakBeforeBraces: Custom
BraceWrapping:
AfterEnum: true
AfterStruct: false
SplitEmptyFunction: false
Nested configuration flags: Nested configuration flags:
......
...@@ -746,6 +746,14 @@ struct FormatStyle { ...@@ -746,6 +746,14 @@ struct FormatStyle {
/// ///
/// If ``BreakBeforeBraces`` is set to ``BS_Custom``, use this to specify how /// If ``BreakBeforeBraces`` is set to ``BS_Custom``, use this to specify how
/// each individual brace case should be handled. Otherwise, this is ignored. /// each individual brace case should be handled. Otherwise, this is ignored.
/// \code{.yaml}
/// # Example of usage:
/// BreakBeforeBraces: Custom
/// BraceWrapping:
/// AfterEnum: true
/// AfterStruct: false
/// SplitEmptyFunction: false
/// \endcode
BraceWrappingFlags BraceWrapping; BraceWrappingFlags BraceWrapping;
/// \brief If ``true``, ternary operators will be placed after line breaks. /// \brief If ``true``, ternary operators will be placed after line breaks.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment