Skip to content

Commit

Permalink
clang-tidy: Make protected & private suffix underscore optional (#5090)
Browse files Browse the repository at this point in the history
  • Loading branch information
pajlada authored Jan 15, 2024
1 parent 93e2bc1 commit 47a14c9
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,9 @@ CheckOptions:
- key: readability-identifier-naming.MemberCase
value: camelBack
- key: readability-identifier-naming.PrivateMemberIgnoredRegexp
value: .*
- key: readability-identifier-naming.PrivateMemberSuffix
value: _
- key: readability-identifier-naming.ProtectedMemberSuffix
value: _
value: ^.*_$
- key: readability-identifier-naming.ProtectedMemberIgnoredRegexp
value: ^.*_$
- key: readability-identifier-naming.UnionCase
value: CamelCase
- key: readability-identifier-naming.GlobalConstantCase
Expand Down

0 comments on commit 47a14c9

Please sign in to comment.