Always use space instead of tabs

This commit is contained in:
Magne Sjaastad 2017-11-22 10:53:03 +01:00
parent 5efe0f705e
commit 6eda898d9a

View File

@ -1,7 +1,7 @@
---
Language: Cpp
# BasedOnStyle: LLVM
AccessModifierOffset: -2
AccessModifierOffset: -4
AlignAfterOpenBracket: Align
AlignConsecutiveAssignments: false
AlignConsecutiveDeclarations: false
@ -86,5 +86,5 @@ SpacesInParentheses: false
SpacesInSquareBrackets: false
Standard: Cpp11
TabWidth: 4
UseTab: Always
UseTab: Never
...