diff options
| author | 2020-06-13 23:00:16 +0000 | |
|---|---|---|
| committer | 2020-06-13 23:00:16 +0000 | |
| commit | 6091152b5de0ca94e8fa7f65aa0597aa2dbf771c (patch) | |
| tree | b96c73789c937302c127e5a3a0aa86795505711d | |
| parent | 5f06fdba561a79fff47b435d3df5148fceffc44b (diff) | |
| parent | 893cb7835b868da43bf9252be985631e479362a7 (diff) | |
Merge "Use `tidy_checks_as_errors` list instead of `-warnings-as-errors=*`" into rvc-dev am: 893cb7835b
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/11770061
Change-Id: I5d551e9eb76bfc0da73ff0d2e3c57a6e5afd0577
| -rw-r--r-- | cmds/idmap2/Android.bp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cmds/idmap2/Android.bp b/cmds/idmap2/Android.bp index fb5830506925..67a7930fbe5d 100644 --- a/cmds/idmap2/Android.bp +++ b/cmds/idmap2/Android.bp @@ -15,7 +15,7 @@ cc_defaults { name: "idmap2_defaults", tidy: true, - tidy_checks: [ + tidy_checks_as_errors: [ "modernize-*", "-modernize-avoid-c-arrays", "-modernize-use-trailing-return-type", @@ -25,7 +25,6 @@ cc_defaults { ], tidy_flags: [ "-system-headers", - "-warnings-as-errors=*", ], } |