diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2019-02-12 22:38:06 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2019-02-13 13:23:32 +0200 |
commit | bc4cace5f32dd28304a25cebd062d31961dfbb3e (patch) | |
tree | 7165d568b9b133546feb874ef522c13d895c25a3 | |
parent | 04d5be7f76fe350997d7cd1c1ea54a5b1972404e (diff) |
clang-format: Remove space after template
Our coding style doesn't require a space after the template keyword.
Adjust .clang-format accordingly.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
-rw-r--r-- | .clang-format | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.clang-format b/.clang-format index bed81c58..7c5f7b00 100644 --- a/.clang-format +++ b/.clang-format @@ -100,7 +100,7 @@ ReflowComments: false SortIncludes: false #SortUsingDeclarations: false # Unknown to clang-format-4.0 SpaceAfterCStyleCast: false -SpaceAfterTemplateKeyword: true +SpaceAfterTemplateKeyword: false SpaceBeforeAssignmentOperators: true #SpaceBeforeCtorInitializerColon: true # Unknown to clang-format-5.0 #SpaceBeforeInheritanceColon: true # Unknown to clang-format-5.0 |