[PATCH] D24364: .clang-tidy: parameters should be CamelCased.
Mike Aizatsky via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 8 15:37:27 PDT 2016
aizatsky updated this revision to Diff 70758.
aizatsky added a comment.
adding MemberCase
https://reviews.llvm.org/D24364
Files:
.clang-tidy
Index: .clang-tidy
===================================================================
--- .clang-tidy
+++ .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.70758.patch
Type: text/x-patch
Size: 617 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160908/714ee640/attachment.bin>
More information about the llvm-commits
mailing list