summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Steven Moreland <smoreland@google.com> 2021-04-23 17:55:40 +0000
committer Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> 2021-04-23 17:55:40 +0000
commitdd855592064750495f809506e68a9736600d184a (patch)
tree4a7efaa3580b6844a330112687faa1a2ef1c7d4c
parent423956f26a65c66df77228b50326edfd894eb38d (diff)
parentabc1f2502397f26079f72aafe6c2324d92dd0463 (diff)
Merge "libbinder: disable disabled tidy warnings" am: abc1f25023
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/1683578 Change-Id: Ie1807e740ba2d844fd31c9dadec1cb942325e9d3
-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*",
],