This is an automated email from the ASF dual-hosted git repository.
apitrou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new cdc3e5a652 MINOR: [C++][Dev] Remove obsolete clang-tidy option (#46213)
cdc3e5a652 is described below
commit cdc3e5a6524eb41e06ebcddf97c1566d87d2871e
Author: Antoine Pitrou <[email protected]>
AuthorDate: Wed Apr 23 15:41:30 2025 +0200
MINOR: [C++][Dev] Remove obsolete clang-tidy option (#46213)
### Rationale for this change
"AnalyzeTemporaryDtors" is obsolete and removed in recent clang-tidy
versions.
### Are these changes tested?
No.
### Are there any user-facing changes?
No.
Authored-by: Antoine Pitrou <[email protected]>
Signed-off-by: Antoine Pitrou <[email protected]>
---
.clang-tidy | 1 -
1 file changed, 1 deletion(-)
diff --git a/.clang-tidy b/.clang-tidy
index ebb75c859e..9aa404db08 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -27,7 +27,6 @@ Checks: |
# produce HeaderFilterRegex from cpp/build-support/lint_exclusions.txt with:
# echo -n '^('; sed -e 's/*/\.*/g' cpp/build-support/lint_exclusions.txt | tr
'\n' '|'; echo ')$'
HeaderFilterRegex:
'^(.*codegen.*|.*_generated.*|.*windows_compatibility.h|.*pyarrow_api.h|.*pyarrow_lib.h|.*python/config.h|.*python/platform.h|.*thirdparty/ae/.*|.*vendored/.*|.*RcppExports.cpp.*|)$'
-AnalyzeTemporaryDtors: true
CheckOptions:
- key:
google-readability-braces-around-statements.ShortStatementLines
value: '1'