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:
parent
8245afd47d
commit
f58b009b7b
1 changed files with 1 additions and 0 deletions
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue