diff options
| author | 2021-04-23 18:36:51 +0000 | |
|---|---|---|
| committer | 2021-04-23 18:36:51 +0000 | |
| commit | 9ff4fdca7cd1dc398dcc4a56ed69b31e494a4521 (patch) | |
| tree | e9be71374ba3a048029136bb8ba1e3f5d07d98fb | |
| parent | 641f7037cc9a97af195202941aa91af443704de5 (diff) | |
| parent | 39402b0057ea4c5a940c4624589e4e68b487819f (diff) | |
Merge "libbinder: disable disabled tidy warnings" am: abc1f25023 am: dd85559206 am: 39402b0057
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/1683578
Change-Id: I4fdc0195c3c7d62c81b48c60e4a2d78245111afc
| -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 1800481343..eef4e74f48 100644 --- a/libs/binder/Android.bp +++ b/libs/binder/Android.bp @@ -189,6 +189,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-*", @@ -209,7 +212,6 @@ cc_library { "-misc-redundant-expression", "-misc-unused-using-decls", "performance*", - "-performance-no-int-to-ptr", "portability*", ], |