From 1fbfdbd5f40a226248c4540396d9f746117b299f Mon Sep 17 00:00:00 2001 From: Jakub Latusek <j.latusek@samsung.com> Date: Wed, 19 Jun 2024 09:51:39 +0200 Subject: [PATCH 1/2] Remove bugprone-casting-through-void check from .clang-tidy --- .clang-tidy | 1 + 1 file changed, 1 insertion(+) diff --git a/.clang-tidy b/.clang-tidy index fcb62d5d505d32..7a0fea4543ddf0 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 -bugprone-copy-constructor-init, -bugprone-easily-swappable-parameters, -bugprone-forward-declaration-namespace, From 7d41e54ab3ee51ed9714494d5ea0d1523f3e5cfe Mon Sep 17 00:00:00 2001 From: Jakub Latusek <j.latusek@samsung.com> Date: Wed, 19 Jun 2024 13:37:32 +0200 Subject: [PATCH 2/2] Add issue number --- .clang-tidy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-tidy b/.clang-tidy index 7a0fea4543ddf0..4073b9ae387392 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -12,7 +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 + -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,