aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChih-Hung Hsieh <chh@google.com>2022-10-10 16:06:18 -0700
committerChih-Hung Hsieh <chh@google.com>2022-10-10 16:08:41 -0700
commita40309dac9e2a6cf5e39a27845e6b802cb1684f6 (patch)
tree3cb09b9727b8fc0e5bb956a4b9f4df113176d1a2
parentcac9830c3bb230dde64cd84a7c9b7e9b910e52aa (diff)
downloadvixl-a40309dac9e2a6cf5e39a27845e6b802cb1684f6.tar.gz
Fix .clang-tidy error
It's a syntax error to have 'CheckOptions' without key-value. Bug: 252877310 Test: TIDY_EXTERNAL_VENDOR=1 make tidy-external-vixl Change-Id: Ia35dd43f0d13b2cb81bb78887d72a8d6333e4efa
-rw-r--r--.clang-tidy1
1 files changed, 0 insertions, 1 deletions
diff --git a/.clang-tidy b/.clang-tidy
index 57feba42..256ea716 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -28,6 +28,5 @@
Checks: '-clang-analyzer-security.insecureAPI.rand,google-*,-google-readability-todo,-google-readability-function-size,-google-build-using-namespace,-google-explicit-constructor,-google-readability-braces-around-statements,-google-readability-namespace-comments,-google-readability-casting'
HeaderFilterRegex: '\.h$'
AnalyzeTemporaryDtors: false
-CheckOptions:
...