From eb7a0ad5b64696b979336b981491cc62446437b2 Mon Sep 17 00:00:00 2001 From: Jakub Latusek Date: Wed, 19 Jun 2024 16:09:58 +0200 Subject: [PATCH] Remove bugprone-casting-through-void check from .clang-tidy (#34009) * Remove bugprone-casting-through-void check from .clang-tidy * Add issue number --- .clang-tidy | 1 + 1 file changed, 1 insertion(+) diff --git a/.clang-tidy b/.clang-tidy index fcb62d5d505d32..4073b9ae387392 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -12,6 +12,7 @@ Checks: > readability-redundant-string-init, -bugprone-assignment-in-if-condition, -bugprone-branch-clone, + -bugprone-casting-through-void, #TODO remove this after fixing issues in source code, issue 34008 -bugprone-copy-constructor-init, -bugprone-easily-swappable-parameters, -bugprone-forward-declaration-namespace,