summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Steven Moreland <smoreland@google.com> 2021-04-23 18:14:07 +0000
committer Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> 2021-04-23 18:14:07 +0000
commit39402b0057ea4c5a940c4624589e4e68b487819f (patch)
tree4a7efaa3580b6844a330112687faa1a2ef1c7d4c
parente4005ba97cc941050d29545f802e819485b84e3f (diff)
parentdd855592064750495f809506e68a9736600d184a (diff)
Merge "libbinder: disable disabled tidy warnings" am: abc1f25023 am: dd85559206
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/1683578 Change-Id: I790a3eea2d12e58edb3c8191afd1a435f727ab52
-rw-r--r--libs/binder/Android.bp4
1 files changed, 3 insertions, 1 deletions
diff --git a/libs/binder/Android.bp b/libs/binder/Android.bp
index cba82071d4..b489d5258d 100644
--- a/libs/binder/Android.bp
+++ b/libs/binder/Android.bp
@@ -192,6 +192,9 @@ cc_library {
// Only check our headers
"--header-filter=^.*frameworks/native/libs/binder/.*.h$",
],
+ tidy_checks: [
+ "-performance-no-int-to-ptr",
+ ],
tidy_checks_as_errors: [
// Explicitly list the checks that should not occur in this module.
"abseil-*",
@@ -212,7 +215,6 @@ cc_library {
"-misc-redundant-expression",
"-misc-unused-using-decls",
"performance*",
- "-performance-no-int-to-ptr",
"portability*",
],