[Scummvm-git-logs] scummvm master -> 5a1909f5fd78a63213f002f8c465e1d9b50f4fe6
bgK
bastien.bouclet at gmail.com
Wed May 6 19:33:54 UTC 2020
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
5a1909f5fd ALL: .clang-foramt fixes
Commit: 5a1909f5fd78a63213f002f8c465e1d9b50f4fe6
https://github.com/scummvm/scummvm/commit/5a1909f5fd78a63213f002f8c465e1d9b50f4fe6
Author: Bastien Bouclet (bastien.bouclet at gmail.com)
Date: 2020-05-06T21:30:11+02:00
Commit Message:
ALL: .clang-foramt fixes
The project code formatting conventions specify we use tabs for
indentation, and don't increase the indentation level in namespaces.
Changed paths:
.clang-format
diff --git a/.clang-format b/.clang-format
index b7decab6b9..a11dad4393 100644
--- a/.clang-format
+++ b/.clang-format
@@ -1,13 +1,13 @@
{
BasedOnStyle: LLVM,
- UseTab: Never,
+ UseTab: ForIndentation,
IndentWidth: 4,
TabWidth: 4,
BreakBeforeBraces: Attach,
IndentCaseLabels: false,
ColumnLimit: 0,
AccessModifierOffset: -4,
- NamespaceIndentation: Inner,
+ NamespaceIndentation: None,
SpaceBeforeParens: ControlStatements,
PointerAlignment: Right,
SpaceAfterCStyleCast: false,
More information about the Scummvm-git-logs
mailing list