summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2016-10-21 21:50:28 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2016-10-21 21:50:28 +0000
commit00c03c5de7fd930da8fe1f9561037c4bc3987685 (patch)
tree493daa3b6304bb450460f7458d8ac783935c10cc /clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp
parent5e83dfedb8d45a7c3ef3984757d5e071eb1f2a52 (diff)
downloadbcm5719-llvm-00c03c5de7fd930da8fe1f9561037c4bc3987685.tar.gz
bcm5719-llvm-00c03c5de7fd930da8fe1f9561037c4bc3987685.zip
Remove 'misc-pointer-and-integral-operation' clang-tidy check. The only cases
it detects are ill-formed (some per C++ core issue 1512, others always have been). llvm-svn: 284888
Diffstat (limited to 'clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp')
-rw-r--r--clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp b/clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp
index b952947f89b..a51f13a575c 100644
--- a/clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp
+++ b/clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp
@@ -32,7 +32,6 @@
#include "NewDeleteOverloadsCheck.h"
#include "NoexceptMoveConstructorCheck.h"
#include "NonCopyableObjects.h"
-#include "PointerAndIntegralOperationCheck.h"
#include "RedundantExpressionCheck.h"
#include "SizeofContainerCheck.h"
#include "SizeofExpressionCheck.h"
@@ -104,8 +103,6 @@ public:
"misc-noexcept-move-constructor");
CheckFactories.registerCheck<NonCopyableObjectsCheck>(
"misc-non-copyable-objects");
- CheckFactories.registerCheck<PointerAndIntegralOperationCheck>(
- "misc-pointer-and-integral-operation");
CheckFactories.registerCheck<RedundantExpressionCheck>(
"misc-redundant-expression");
CheckFactories.registerCheck<SizeofContainerCheck>("misc-sizeof-container");
OpenPOWER on IntegriCloud