forked from OSchip/llvm-project
[clang-format][docs][NFC] Fix example for Allman brace breaking style
I assume the example is wrong as it's clearly missing line-breaks before braces. I just ran the example through clang-format with .clang-format like this: BreakBeforeBraces: Allman Differential Revision: https://reviews.llvm.org/D58941 llvm-svn: 355365
This commit is contained in:
parent
814ad73452
commit
3fd4a968ad
|
@ -925,19 +925,28 @@ the configuration (without a prefix: ``Auto``).
|
|||
|
||||
.. code-block:: c++
|
||||
|
||||
try {
|
||||
try
|
||||
{
|
||||
foo();
|
||||
}
|
||||
catch () {
|
||||
catch ()
|
||||
{
|
||||
}
|
||||
void foo() { bar(); }
|
||||
class foo {
|
||||
class foo
|
||||
{
|
||||
};
|
||||
if (foo()) {
|
||||
if (foo())
|
||||
{
|
||||
}
|
||||
else {
|
||||
else
|
||||
{
|
||||
}
|
||||
enum X : int { A, B };
|
||||
enum X : int
|
||||
{
|
||||
A,
|
||||
B
|
||||
};
|
||||
|
||||
* ``BS_GNU`` (in configuration: ``GNU``)
|
||||
Always break before braces and add an extra level of indentation to
|
||||
|
|
Loading…
Reference in New Issue