[libcxx-commits] [libcxx] [libc++] Fix naming of value template parameters (PR #76888)
Mark de Wever via libcxx-commits
libcxx-commits at lists.llvm.org
Thu Jan 4 08:57:33 PST 2024
================
@@ -56,8 +56,12 @@ CheckOptions:
value: _
- key: readability-identifier-naming.TemplateParameterIgnoredRegexp
value: (.*\:auto|expr-type) # This is https://llvm.org/PR56464
- - key: readability-identifier-naming.ValueTemplateParameterIgnoredRegexp # TODO: enforce naming of variable parameters
- value: .*
+ - key: readability-identifier-naming.ValueTemplateParameterCase
+ value: lower_case
----------------
mordante wrote:
I really dislike this. I really like to stay close to the wording in the Standard an there value arguments are upper case too,
https://github.com/llvm/llvm-project/pull/76888
More information about the libcxx-commits
mailing list