[llvm] r281002 - .clang-tidy: parameters and members should be CamelCased.

Mike Aizatsky via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 8 16:29:38 PDT 2016


Author: aizatsky
Date: Thu Sep  8 18:29:37 2016
New Revision: 281002

URL: http://llvm.org/viewvc/llvm-project?rev=281002&view=rev
Log:
.clang-tidy: parameters and members should be CamelCased.

Summary: Not sure why is it missing.

Differential Revision: https://reviews.llvm.org/D24364

Modified:
    llvm/trunk/.clang-tidy

Modified: llvm/trunk/.clang-tidy
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/.clang-tidy?rev=281002&r1=281001&r2=281002&view=diff
==============================================================================
--- llvm/trunk/.clang-tidy (original)
+++ llvm/trunk/.clang-tidy Thu Sep  8 18:29:37 2016
@@ -6,6 +6,10 @@ CheckOptions:
     value:           CamelCase
   - key:             readability-identifier-naming.FunctionCase
     value:           lowerCase
+  - key:             readability-identifier-naming.MemberCase
+    value:           CamelCase
+  - key:             readability-identifier-naming.ParameterCase
+    value:           CamelCase
   - key:             readability-identifier-naming.UnionCase
     value:           CamelCase
   - key:             readability-identifier-naming.VariableCase




More information about the llvm-commits mailing list