1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

style(clang-format): don't indent case statements

This commit is contained in:
Zetok Zalbavar 2017-02-25 23:49:57 +00:00
parent 2abbbbfa3f
commit 4367dc601d
No known key found for this signature in database
GPG Key ID: C953D3880212068A
2 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@ Standard: Cpp11
IndentWidth: 4
ContinuationIndentWidth: 4
AccessModifierOffset: -4
IndentCaseLabels: true
IndentCaseLabels: false
NamespaceIndentation: None
# Spacing

View File

@ -77,9 +77,9 @@ public:
// Some code here
switch (...) {
case 0: {
// Some code here
}
case 0: {
// Some code here
}
}
// More code