# HG changeset patch # User kono # Date 1667983674 -32400 # Node ID c80f45b162add64c2306de47c065649aafda7fad # Parent c4bab56944e82936ad200630bb0e883e5a4338d2 add some fix diff -r c4bab56944e8 -r c80f45b162ad .clang-tidy --- a/.clang-tidy Wed Nov 09 17:45:10 2022 +0900 +++ b/.clang-tidy Wed Nov 09 17:47:54 2022 +0900 @@ -1,4 +1,4 @@ -Checks: '-*,clang-diagnostic-*,llvm-*,misc-*,-misc-unused-parameters,-misc-non-private-member-variables-in-classes,-misc-no-recursion,readability-identifier-naming' +Checks: '-*,clang-diagnostic-*,llvm-*,misc-*,-misc-const-correctness,-misc-unused-parameters,-misc-non-private-member-variables-in-classes,-misc-no-recursion,readability-identifier-naming' CheckOptions: - key: readability-identifier-naming.ClassCase value: CamelCase @@ -6,6 +6,10 @@ value: CamelCase - key: readability-identifier-naming.FunctionCase value: camelBack + # Exclude from scanning as this is an exported symbol used for fuzzing + # throughout the code base. + - key: readability-identifier-naming.FunctionIgnoredRegexp + value: "LLVMFuzzerTestOneInput" - key: readability-identifier-naming.MemberCase value: CamelCase - key: readability-identifier-naming.ParameterCase @@ -16,4 +20,7 @@ value: CamelCase - key: readability-identifier-naming.IgnoreMainLikeFunctions value: 1 - + - key: readability-redundant-member-init.IgnoreBaseInCopyConstructors + value: 1 + - key: modernize-use-default-member-init.UseAssignment + value: 1 diff -r c4bab56944e8 -r c80f45b162ad .git-blame-ignore-revs --- a/.git-blame-ignore-revs Wed Nov 09 17:45:10 2022 +0900 +++ b/.git-blame-ignore-revs Wed Nov 09 17:47:54 2022 +0900 @@ -43,3 +43,6 @@ # Use C++11 default member initializers in LLDB. NFC. 9494c510af56d9c8593ab69017dcaa232210b235 + +# [libc++][NFC] clang-format <__config> +ac251726f84d5b7e6533a2e3712920184435b61b diff -r c4bab56944e8 -r c80f45b162ad .mailmap --- a/.mailmap Wed Nov 09 17:45:10 2022 +0900 +++ b/.mailmap Wed Nov 09 17:47:54 2022 +0900 @@ -16,7 +16,7 @@ # Combinations of both are possible too, see # https://git-scm.com/docs/gitmailmap for format details. # -# You can commit changes for your own names and email addresses without review. +# You can commit changes for your own names and email addresses without review. # If you want to add entries for other people, please have them review the # addition. # @@ -24,12 +24,15 @@ + + + -Jon Roelofs Jon Roelofs -Jon Roelofs Jonathan Roelofs -Jon Roelofs Jonathan Roelofs +Jon Roelofs +Jon Roelofs +LLVM GN Syncbot Martin Storsjö -Saleem Abdulrasool +Saleem Abdulrasool