home  

indent_braces_no_class

Properties

  Category: Indenting options
      Type: boolean [false, true]
   Default: false

Description

Whether to disable indenting class braces if indent_braces=true.

Examples

raw CPP code indent_braces_no_class=false
indent_braces=true
indent_braces_no_class=true
indent_braces=true
class C { void f(int i){ a=i; }; int a; }; class C { void f(int i) { a=i; }; int a; }; class C { void f(int i){ a=i; }; int a; }; class C { void f(int i) { a=i; }; int a; }; class C { void f(int i){ a=i; }; int a; }; class C { void f(int i) { a=i; }; int a; };
 

Info

  Edited by JEAYNE
  BUG? The same result as indent_braces_no_struct is expected.

Not the best code for this option? See how to improve the .uds file used to generate these examples.