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:
parent
2abbbbfa3f
commit
4367dc601d
|
@ -7,7 +7,7 @@ Standard: Cpp11
|
||||||
IndentWidth: 4
|
IndentWidth: 4
|
||||||
ContinuationIndentWidth: 4
|
ContinuationIndentWidth: 4
|
||||||
AccessModifierOffset: -4
|
AccessModifierOffset: -4
|
||||||
IndentCaseLabels: true
|
IndentCaseLabels: false
|
||||||
NamespaceIndentation: None
|
NamespaceIndentation: None
|
||||||
|
|
||||||
# Spacing
|
# Spacing
|
||||||
|
|
|
@ -77,9 +77,9 @@ public:
|
||||||
// Some code here
|
// Some code here
|
||||||
|
|
||||||
switch (...) {
|
switch (...) {
|
||||||
case 0: {
|
case 0: {
|
||||||
// Some code here
|
// Some code here
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// More code
|
// More code
|
||||||
|
|
Loading…
Reference in New Issue
Block a user