summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorChih-Hung Hsieh <chh@google.com>2018-10-01 16:16:02 -0700
committerChih-Hung Hsieh <chh@google.com>2018-10-01 16:17:44 -0700
commit153b71c4073e9512e8315673cdbd835b0646af87 (patch)
tree9a0353d718ca70fcecc5c605bd50b48d7a0ab725 /tools
parent05ba56d6c0811928b555393e912b1080bc90c923 (diff)
Work around bugprone-exception-escape bug.
Bug: 117120485 Test: build with WITH_TIDY=1 and global bugprone-* checks. Change-Id: I28aa2a176bd7d2ae4961877a8122a09666d85237
Diffstat (limited to 'tools')
-rw-r--r--tools/versioner/src/Android.bp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/versioner/src/Android.bp b/tools/versioner/src/Android.bp
index 4b237a999..f138cc3b2 100644
--- a/tools/versioner/src/Android.bp
+++ b/tools/versioner/src/Android.bp
@@ -3,6 +3,9 @@ cc_binary_host {
cpp_std: "gnu++17",
+ // b/117120485 bugprone-exception-escape hangs with DeclarationDatabase.cpp
+ tidy_checks: ["-bugprone-exception-escape"],
+
srcs: [
"versioner.cpp",
"Arch.cpp",