================
@@ -18,12 +18,11 @@ namespace clang::tidy::bugprone {
namespace {
AST_MATCHER(clang::VarDecl, hasConstantDeclaration) {
+ if (Node.isConstexpr())
+ return true;
----------------
zeyi2 wrote:A follow up TODO could be: add `constinit` support (>= C++20) for this check. https://github.com/llvm/llvm-project/pull/174275 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
