home  

mod_sort_case_sensitive

Properties

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

Description

Whether to take care of the case by the mod_sort_xx options.

Examples

raw CPP code mod_sort_case_sensitive=false mod_sort_case_sensitive=true
void f(){switch(a){case 1:a++;break;case -1:a--;case 123:a--;break;default:a=0;}} void f(){ switch(a){case 1: a++; break; case -1: a--; case 123: a--; break; default: a=0;} } void f(){ switch(a){case 1: a++; break; case -1: a--; case 123: a--; break; default: a=0;} }
 

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