jcmoyer wrote:
@PiotrZSL I don't mind but I changed it just in case it's an issue.
https://github.com/llvm/llvm-project/pull/71385
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/jcmoyer updated
https://github.com/llvm/llvm-project/pull/71385
>From 09c49dca700a5c01bee96765f1eede1808540af4 Mon Sep 17 00:00:00 2001
From: "J.C. Moyer"
Date: Sat, 18 Nov 2023 07:06:07 -0500
Subject: [PATCH] [clang-tidy] Improve alternate snake case warnings
Improves the a
jcmoyer wrote:
Rebased to resolve merge conflict.
https://github.com/llvm/llvm-project/pull/71385
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
https://github.com/jcmoyer updated
https://github.com/llvm/llvm-project/pull/71385
>From f8282b227e296a4662812c933999f0bf90982748 Mon Sep 17 00:00:00 2001
From: "J.C. Moyer"
Date: Sun, 5 Nov 2023 17:21:32 -0500
Subject: [PATCH] [clang-tidy] Improve alternate snake case warnings
Improves the ac
https://github.com/jcmoyer updated
https://github.com/llvm/llvm-project/pull/71385
>From 41f2765e7d3a0a04ac8c47d73059b16b138bd779 Mon Sep 17 00:00:00 2001
From: "J.C. Moyer"
Date: Sun, 5 Nov 2023 17:21:32 -0500
Subject: [PATCH] [clang-tidy] Improve alternate snake case warnings
Improves the ac
jcmoyer wrote:
> Also update release notes, add one sentence there about this.
Done.
https://github.com/llvm/llvm-project/pull/71385
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
@@ -871,8 +871,8 @@ bool IdentifierNamingCheck::matchesStyle(
llvm::Regex("^[a-z][a-zA-Z0-9]*$"),
llvm::Regex("^[A-Z][A-Z0-9_]*$"),
llvm::Regex("^[A-Z][a-zA-Z0-9]*$"),
- llvm::Regex("^[A-Z]([a-z0-9]*(_[A-Z])?)*"),
- llvm::Regex("^[a-z]([a-z0-9]*(_[A-
https://github.com/jcmoyer created
https://github.com/llvm/llvm-project/pull/71385
Improves the accuracy of `readability-identifier-naming` for cases
`Camel_Snake_Case` and `camel_Snake_Back`. Prior to this commit, these cases
matched identifiers with **only** a leading upper case letter or le