AStyle: don't indent cases

This was a bug in our configuration. Earlier versions of our style did not
specify this option. We found out for some code in our codebase that it was
changed because of the setting.

An example:

```
case: {
    // code here
}

//would be changed to

case: {
    // code here
   }
```

The first one is correct and do not need to be indented (it's enough switch is
indented).
pull/7007/head
Martin Kojtal 2018-05-24 14:02:28 +01:00
parent 18634009c5
commit 1059c26e79
1 changed files with 0 additions and 1 deletions

View File

@ -16,7 +16,6 @@ convert-tabs
# Indent switches and cases # Indent switches and cases
indent-switches indent-switches
indent-cases
# Remove spaces in and around parentheses # Remove spaces in and around parentheses
unpad-paren unpad-paren