@@ -199,6 +199,11 @@ Improvements to clang-tidy
New checks
^^
+- New :doc:`abseil-unchecked-statusor-access
vbvictor wrote:
Since we generally add a considerable amount of checks each release (5-10) and
many bug fixes (20-40) it's easier to read in a
https://github.com/vbvictor edited
https://github.com/llvm/llvm-project/pull/130494
___
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
@@ -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