From 282e7e2a8281853eaab29d184de2acb1abc2bc7f Mon Sep 17 00:00:00 2001 From: Artem Yerofieiev <169092593+ayerofieiev-tt@users.noreply.github.com> Date: Fri, 15 Nov 2024 09:11:12 -0800 Subject: [PATCH] Enable clang-tidy check for use after move (#15105) ### Ticket #15073 ### Problem description Clang tidy check for use after move was disabled ### What's changed Enable the check. ### Checklist - [x] [Post commit CI](https://github.com/tenstorrent/tt-metal/actions/runs/11860351908) --- .clang-tidy | 1 - 1 file changed, 1 deletion(-) diff --git a/.clang-tidy b/.clang-tidy index d60b3c4ae36..14c252dfa08 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -25,7 +25,6 @@ Checks: > -bugprone-unchecked-optional-access, -bugprone-unhandled-self-assignment, -bugprone-unused-raii, - -bugprone-use-after-move, -cert-env33-c, -cert-err09-cpp, -cert-err33-c,