From 3285f94244ecda0912c76c9b1e9b16e0cf96d073 Mon Sep 17 00:00:00 2001 From: Alexander Belyaev Date: Wed, 3 Aug 2022 10:18:18 +0200 Subject: [PATCH] [mlir] Disable `misc-const-correctness` clang-tidy check. https://clang.llvm.org/extra/clang-tidy/checks/misc/const-correctness.html --- mlir/.clang-tidy | 1 + 1 file changed, 1 insertion(+) diff --git a/mlir/.clang-tidy b/mlir/.clang-tidy index 4b78ece597e50..eb8cbbeb9723c 100644 --- a/mlir/.clang-tidy +++ b/mlir/.clang-tidy @@ -1,5 +1,6 @@ InheritParentConfig: true Checks: > + -misc-const-correctness, bugprone-argument-comment, bugprone-assert-side-effect, bugprone-branch-clone,