summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaksim Denisov <denisov.maksim@huawei.com>2024-10-08 13:05:15 +0200
committerMaksim Denisov <denisov.maksim@huawei.com>2024-10-08 15:41:50 +0200
commita050cfe72b6bc02a8df2cdeefa739931983462a7 (patch)
tree16572e276b38871a4f848aba22e245d06b7c01cb
parent13e86fbbd0986a5f231f4f6bd5fd2423ba75f170 (diff)
downloadjustbuild-a050cfe72b6bc02a8df2cdeefa739931983462a7.tar.gz
Name constant members using kCamelCase.
-rw-r--r--.clang-tidy2
1 files changed, 2 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy
index 6524383a..1ccb870b 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -58,5 +58,7 @@ CheckOptions:
- { key: readability-identifier-naming.ConstexprVariablePrefix, value: k }
- { key: readability-identifier-naming.GlobalConstantCase, value: CamelCase }
- { key: readability-identifier-naming.GlobalConstantPrefix, value: k }
+ - { key: readability-identifier-naming.MemberConstantCase, value: CamelCase }
+ - { key: readability-identifier-naming.MemberConstantPrefix, value: k }
- { key: readability-identifier-naming.StaticConstantCase, value: CamelCase }
- { key: readability-identifier-naming.StaticConstantPrefix, value: k }