You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
378 B

// Example for case in a preprocesser statement
// Config uses more than tested option, uses:
// pp_if_indent_code = true to enable preprocesser indent
// pp_indent_case = false to override preprocessor indent for case blocks
switch(...)
{
case 1:
case 2:
{
int v;
...
}
break;
#if (USE_FIVE)
case 3:
doFive();
break;
#endif
default:
break;
}