diff options
author | Alexander Kornienko <alexfh@google.com> | 2018-03-15 08:26:47 +0000 |
---|---|---|
committer | Alexander Kornienko <alexfh@google.com> | 2018-03-15 08:26:47 +0000 |
commit | 68fb65f413111de82311c3ebcccebdbfc75d5dc0 (patch) | |
tree | 1e1aa1fdae0dcf15d3706433b9296ac2ae7ad267 /clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp | |
parent | 3273888536db25dd5cd3d2e7ebc5138632e6e8a8 (diff) | |
download | llvm-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.cpp | 2 |
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"); |