This is an automated email from the ASF dual-hosted git repository.
bbannier pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git
The following commit(s) were added to refs/heads/master by this push:
new be77616 Deactivated clang-tidy check `clang-analyzer-cplusplus.Move`.
be77616 is described below
commit be77616257acb5a47db3c5790501a5a0693babd2
Author: Benjamin Bannier <[email protected]>
AuthorDate: Fri Jun 28 13:08:44 2019 +0200
Deactivated clang-tidy check `clang-analyzer-cplusplus.Move`.
This check which will be enabled by default with upstreams 8.0.0 release
has false positives in our codebase, see
https://bugs.llvm.org/show_bug.cgi?id=42433.
Review: https://reviews.apache.org/r/70970
---
support/clang-tidy | 1 +
1 file changed, 1 insertion(+)
diff --git a/support/clang-tidy b/support/clang-tidy
index 8cb1662..27879a6 100644
--- a/support/clang-tidy
+++ b/support/clang-tidy
@@ -10,6 +10,7 @@ clang-analyzer-*,\
-clang-analyzer-core.UndefinedBinaryOperatorResult,\
-clang-analyzer-core.uninitialized.Assign,\
-clang-analyzer-core.uninitialized.UndefReturn,\
+-clang-analyzer-cplusplus.Move,\
-clang-analyzer-cplusplus.NewDelete,\
-clang-analyzer-cplusplus.NewDeleteLeaks,\
-clang-analyzer-optin.cplusplus.VirtualCall,\