diff options
author | Alexander Kornienko <alexfh@google.com> | 2018-03-15 08:26:19 +0000 |
---|---|---|
committer | Alexander Kornienko <alexfh@google.com> | 2018-03-15 08:26:19 +0000 |
commit | 3273888536db25dd5cd3d2e7ebc5138632e6e8a8 (patch) | |
tree | 00981ad8cb8e718480708cd568f57859d1ec5e46 /clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp | |
parent | 7ff60761296f7797967843a5169f1634f3d5c431 (diff) | |
download | bcm5719-llvm-3273888536db25dd5cd3d2e7ebc5138632e6e8a8.tar.gz bcm5719-llvm-3273888536db25dd5cd3d2e7ebc5138632e6e8a8.zip |
[clang-tidy] rename_check.py misc-sizeof-expression bugprone-sizeof-expression
llvm-svn: 327607
Diffstat (limited to 'clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp')
-rw-r--r-- | clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp | 3 |
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 a5f017ee719..9a9ebb6f9d2 100644 --- a/clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp +++ b/clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp @@ -16,7 +16,6 @@ #include "NonCopyableObjects.h" #include "RedundantExpressionCheck.h" #include "SizeofContainerCheck.h" -#include "SizeofExpressionCheck.h" #include "StaticAssertCheck.h" #include "ThrowByValueCatchByReferenceCheck.h" #include "UnconventionalAssignOperatorCheck.h" @@ -45,8 +44,6 @@ public: CheckFactories.registerCheck<RedundantExpressionCheck>( "misc-redundant-expression"); CheckFactories.registerCheck<SizeofContainerCheck>("misc-sizeof-container"); - CheckFactories.registerCheck<SizeofExpressionCheck>( - "misc-sizeof-expression"); CheckFactories.registerCheck<StaticAssertCheck>("misc-static-assert"); CheckFactories.registerCheck<ThrowByValueCatchByReferenceCheck>( "misc-throw-by-value-catch-by-reference"); |