summaryrefslogtreecommitdiff
path: root/Android.bp
diff options
context:
space:
mode:
authorBernie Innocenti <codewiz@google.com>2018-10-25 22:12:07 +0900
committerBernie Innocenti <codewiz@google.com>2018-10-25 22:12:07 +0900
commitb2515ff7cee2a85fe95a3f0e3f41fedbe0facb9b (patch)
tree53dcfea9c9f16c8f283032e77276116b8d1dea60 /Android.bp
parent5f35d9993f677a539646b0cafe1e7494ed435d50 (diff)
downloadbpf-b2515ff7cee2a85fe95a3f0e3f41fedbe0facb9b.tar.gz
Disable noisy clang-tidy warning for int and long types
These are hard to avoid when working with POSIX APIs: warning: consider replacing 'unsigned int' with 'uint32' [google-runtime-int] Change-Id: I30047ff05ff680a9337671368e6b82ba88244f79
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index ca64e87..deaf71e 100644
--- a/Android.bp
+++ b/Android.bp
@@ -13,5 +13,7 @@ cc_defaults {
"android-*",
"cert-*",
"clang-analyzer-security*",
+ // Disabling due to many unavoidable warnings from POSIX API usage.
+ "-google-runtime-int",
],
}