[PATCH] D24364: .clang-tidy: parameters and members should be CamelCased.

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


This revision was automatically updated to reflect the committed changes.
Closed by commit rL281002: .clang-tidy: parameters and members should be CamelCased. (authored by aizatsky).

Changed prior to commit:
  https://reviews.llvm.org/D24364?vs=70758&id=70764#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D24364

Files:
  llvm/trunk/.clang-tidy

Index: llvm/trunk/.clang-tidy
===================================================================
--- llvm/trunk/.clang-tidy
+++ llvm/trunk/.clang-tidy
@@ -6,6 +6,10 @@
     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


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D24364.70764.patch
Type: text/x-patch
Size: 650 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160908/dac0caec/attachment.bin>


More information about the llvm-commits mailing list