From 4b88a5bd0bd80d72fc36c3ae099fcdd4152dfd7b Mon Sep 17 00:00:00 2001 From: cyy Date: Sun, 12 May 2024 21:44:33 +0000 Subject: [PATCH] Remove AnalyzeTemporaryDtors from clang-tidy config (#125985) Remove AnalyzeTemporaryDtors from clang-tidy config which is not used in newer releases. Pull Request resolved: https://github.com/pytorch/pytorch/pull/125985 Approved by: https://github.com/Skylion007 --- .clang-tidy | 1 - 1 file changed, 1 deletion(-) diff --git a/.clang-tidy b/.clang-tidy index d0d74d154c6..fef154d4b0c 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -61,6 +61,5 @@ readability-simplify-subscript-expr, readability-string-compare, ' HeaderFilterRegex: '^(aten/|c10/|torch/).*$' -AnalyzeTemporaryDtors: false WarningsAsErrors: '*' ...