aboutsummaryrefslogtreecommitdiff
path: root/clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp
diff options
context:
space:
mode:
authorAlexander Kornienko <alexfh@google.com>2018-03-15 08:26:47 +0000
committerAlexander Kornienko <alexfh@google.com>2018-03-15 08:26:47 +0000
commit68fb65f413111de82311c3ebcccebdbfc75d5dc0 (patch)
tree1e1aa1fdae0dcf15d3706433b9296ac2ae7ad267 /clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp
parent3273888536db25dd5cd3d2e7ebc5138632e6e8a8 (diff)
downloadllvm-68fb65f413111de82311c3ebcccebdbfc75d5dc0.zip
llvm-68fb65f413111de82311c3ebcccebdbfc75d5dc0.tar.gz
llvm-68fb65f413111de82311c3ebcccebdbfc75d5dc0.tar.bz2
[clang-tidy] rename_check.py misc-sizeof-container bugprone-sizeof-container
llvm-svn: 327608
Diffstat (limited to 'clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp')
-rw-r--r--clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp b/clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp
index 9a9ebb6..b49f794 100644
--- a/clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp
+++ b/clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp
@@ -15,7 +15,6 @@
#include "NewDeleteOverloadsCheck.h"
#include "NonCopyableObjects.h"
#include "RedundantExpressionCheck.h"
-#include "SizeofContainerCheck.h"
#include "StaticAssertCheck.h"
#include "ThrowByValueCatchByReferenceCheck.h"
#include "UnconventionalAssignOperatorCheck.h"
@@ -43,7 +42,6 @@ public:
"misc-non-copyable-objects");
CheckFactories.registerCheck<RedundantExpressionCheck>(
"misc-redundant-expression");
- CheckFactories.registerCheck<SizeofContainerCheck>("misc-sizeof-container");
CheckFactories.registerCheck<StaticAssertCheck>("misc-static-assert");
CheckFactories.registerCheck<ThrowByValueCatchByReferenceCheck>(
"misc-throw-by-value-catch-by-reference");