home  

mod_full_brace_nl_block_rem_mlcond

Properties

  Category: Code modifying options (non-whitespace)
      Type: boolean [false, true]
   Default: false

Description

Whether to prevent removal of braces from 'if'/'for'/'while'/etc. blocks
which span multiple lines.

Affects:
  mod_full_brace_for
  mod_full_brace_if
  mod_full_brace_if_chain
  mod_full_brace_if_chain_only
  mod_full_brace_while
  mod_full_brace_using

Does not affect:
  mod_full_brace_do
  mod_full_brace_function

Examples

raw CPP code mod_full_brace_nl_block_rem_mlcond=false mod_full_brace_nl_block_rem_mlcond=true
/*-- this is the default sample --*/ int main(int argc, char** argv){ int n = 0; if(arg>=1){ printf("Hello %s!\n", argv[1]); n=strlen(argv[1]); }else{ puts("Hello world!"); } return n; } /*-- this is the default sample --*/ int main(int argc, char** argv){ int n = 0; if(arg>=1){ printf("Hello %s!\n", argv[1]); n=strlen(argv[1]); }else{ puts("Hello world!"); } return n; } /*-- this is the default sample --*/ int main(int argc, char** argv){ int n = 0; if(arg>=1){ printf("Hello %s!\n", argv[1]); n=strlen(argv[1]); }else{ puts("Hello world!"); } return n; }
 

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