llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-clang-tidy Author: Baranov Victor (vbvictor) <details> <summary>Changes</summary> --- Full diff: https://github.com/llvm/llvm-project/pull/184834.diff 1 Files Affected: - (modified) clang-tools-extra/clang-tidy/.clang-tidy (+3) ``````````diff diff --git a/clang-tools-extra/clang-tidy/.clang-tidy b/clang-tools-extra/clang-tidy/.clang-tidy index 41082695da090..04ff2727618f7 100644 --- a/clang-tools-extra/clang-tidy/.clang-tidy +++ b/clang-tools-extra/clang-tidy/.clang-tidy @@ -8,6 +8,7 @@ Checks: > -bugprone-easily-swappable-parameters, -bugprone-narrowing-conversions, -bugprone-unused-return-value, + -bugprone-derived-method-shadowing-base-method, cppcoreguidelines-init-variables, cppcoreguidelines-missing-std-forward, cppcoreguidelines-rvalue-reference-param-not-moved, @@ -44,3 +45,5 @@ CheckOptions: value: false - key: misc-include-cleaner.MissingIncludes value: false + - key: misc-override-with-different-visibility.DisallowedVisibilityChange + value: widening `````````` </details> https://github.com/llvm/llvm-project/pull/184834 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
