Disable warning which is not detecting problems.

A clang update enabled -Wreorder-init-list by default. Since it doesn't
provide any benefit to the debuggerd code, disable the warning.

Test: Builds without warnings.
Change-Id: I75cfe064ba92c74312ba33f329b1364258eba06c
This commit is contained in:
Christopher Ferris 2023-09-12 13:01:10 -07:00
parent 8245afd47d
commit f58b009b7b

View file

@ -12,6 +12,7 @@ cc_defaults {
"-Wno-unused-argument",
"-Wno-unused-function",
"-Wno-nullability-completeness",
"-Wno-reorder-init-list",
"-Os",
"-fno-finite-loops",
"-DANDROID_DEBUGGABLE=0",