diff options
| author | 2021-04-23 18:14:07 +0000 | |
|---|---|---|
| committer | 2021-04-23 18:14:07 +0000 | |
| commit | 39402b0057ea4c5a940c4624589e4e68b487819f (patch) | |
| tree | 4a7efaa3580b6844a330112687faa1a2ef1c7d4c | |
| parent | e4005ba97cc941050d29545f802e819485b84e3f (diff) | |
| parent | dd855592064750495f809506e68a9736600d184a (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.bp | 4 |
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*", ], |