Skip to content

Commit f9854f8

Browse files
committed
🐛 🚨 Fix clang-tidy
Problem: - The `AnalyzeTemporaryDtors` option was **removed** in clang-tidy-18, which means that clang-tidy was failing to parse the .clang-tidy file. - Incredibly, clang-tidy exits with **success** if it fails to parse the .clang-tidy file! Therefore all clang-tidy runs were passing without actually tidying anything. Solution: - Remove `AnalyzeTemporaryDtors` option from .clang-tidy
1 parent 4a53e8a commit f9854f8

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

.clang-tidy

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,5 @@ Checks: >
3636
-readability-uppercase-literal-suffix
3737
WarningsAsErrors: '*'
3838
HeaderFilterRegex: ''
39-
AnalyzeTemporaryDtors: false
4039
FormatStyle: file
4140
...

0 commit comments

Comments
 (0)