From: Hironori.Fujii@sony.com Date: Tue, 4 Jan 2022 20:59:30 +0000 (+0000) Subject: clang-format: Change SpaceAfterTemplateKeyword to false X-Git-Url: https://git.webkit.org/?p=WebKit-https.git;a=commitdiff_plain;h=d588c5718089f104dfc12e569684c4a4dcf380d8 clang-format: Change SpaceAfterTemplateKeyword to false https://bugs.webkit.org/show_bug.cgi?id=234655 Reviewed by Don Olmstead. Bug 183302 added the initial .clang-format file which were including SpaceAfterTemplateKeyword:true. However, even though it is undocumented, typical WebKit code is using a style having no space ater the `template` keyword. * .clang-format: git-svn-id: https://svn.webkit.org/repository/webkit/trunk@287581 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/.clang-format b/.clang-format index 2dc3b36dbb6f..0e7c0d5a13e6 100644 --- a/.clang-format +++ b/.clang-format @@ -95,7 +95,7 @@ ReflowComments: true SortIncludes: true SortUsingDeclarations: true SpaceAfterCStyleCast: false -SpaceAfterTemplateKeyword: true +SpaceAfterTemplateKeyword: false SpaceBeforeAssignmentOperators: true SpaceBeforeCpp11BracedList: true SpaceBeforeParens: ControlStatements diff --git a/ChangeLog b/ChangeLog index 59f066a3554e..04f8d9bc32d3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,17 @@ +2022-01-04 Fujii Hironori + + clang-format: Change SpaceAfterTemplateKeyword to false + https://bugs.webkit.org/show_bug.cgi?id=234655 + + Reviewed by Don Olmstead. + + Bug 183302 added the initial .clang-format file which were + including SpaceAfterTemplateKeyword:true. However, even though it + is undocumented, typical WebKit code is using a style having no + space ater the `template` keyword. + + * .clang-format: + 2022-01-01 Jeff Miller Update user-visible copyright strings to include 2022