home  

indent_compound_literal_return

Properties

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

Description

How to indent compound literals that are being returned.
true: add both the indent from return & the compound literal open brace
      (i.e. 2 indent levels)
false: only indent 1 level, don't add the indent for the open brace, only
       add the indent for the return.

Default: true

Examples

raw CPP code indent_compound_literal_return=false indent_compound_literal_return=true
void f(){return;} int f(){return a+b;} int f(){return(a+b);} void f(){ return; } int f(){ return a+b; } int f(){ return(a+b); } void f(){ return; } int f(){ return a+b; } int f(){ return(a+b); }
 

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