[llvm-branch-commits] [clang-tools-extra] [clang-tidy] support pointee mutation check in misc-const-correctness (PR #130494)
https://github.com/vbvictor edited https://github.com/llvm/llvm-project/pull/130494 ___ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
[llvm-branch-commits] [clang-tools-extra] [clang-tidy] support pointee mutation check in misc-const-correctness (PR #130494)
@@ -39,34 +41,47 @@ ConstCorrectnessCheck::ConstCorrectnessCheck(StringRef Name, : ClangTidyCheck(Name, Context), AnalyzeValues(Options.get("AnalyzeValues", true)), AnalyzeReferences(Options.get("AnalyzeReferences", true)), + AnalyzePointers(Options.get("An