Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 525dd90e authored by Steven Moreland's avatar Steven Moreland
Browse files

libbinder: disable disabled tidy warnings

Before we disabled a clang tidy warning by reducing it to a warning.
This was invisible at the time, but now that clang is updated, it's
build log spam.

Fixes: 186144656
Test: build and no logs
Test: introduce a clang-tidy violation to make sure other checks are
    still enabled
Change-Id: I53a55949f809a9c05b3676c11e679ac3d98614eb
parent 39301eae
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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*",
    ],