Skip to content

Commit f205a27

Browse files
committedSep 8, 2016
.clang-tidy: parameters and members should be CamelCased.
Summary: Not sure why is it missing. Differential Revision: https://reviews.llvm.org/D24364 llvm-svn: 281002
1 parent 86c5fb8 commit f205a27

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎llvm/.clang-tidy

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ CheckOptions:
66
value: CamelCase
77
- key: readability-identifier-naming.FunctionCase
88
value: lowerCase
9+
- key: readability-identifier-naming.MemberCase
10+
value: CamelCase
11+
- key: readability-identifier-naming.ParameterCase
12+
value: CamelCase
913
- key: readability-identifier-naming.UnionCase
1014
value: CamelCase
1115
- key: readability-identifier-naming.VariableCase

0 commit comments

Comments
 (0)
Please sign in to comment.