diff options
author | Alexander Kornienko <alexfh@google.com> | 2018-01-30 14:55:50 +0000 |
---|---|---|
committer | Alexander Kornienko <alexfh@google.com> | 2018-01-30 14:55:50 +0000 |
commit | 5c9c0427bb5b733143861c817bebf0f170dbe3db (patch) | |
tree | 525f45d14780062d4783e5db3ae419dc10fed960 /clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp | |
parent | 4170f04576dabd55768a7eacd06e8eeb0282a7dd (diff) | |
download | bcm5719-llvm-5c9c0427bb5b733143861c817bebf0f170dbe3db.tar.gz bcm5719-llvm-5c9c0427bb5b733143861c817bebf0f170dbe3db.zip |
clang-tidy/rename_check.py misc-string-compare readability-string-compare
llvm-svn: 323766
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 cae52b98330..ef99fafa218 100644 --- a/clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp +++ b/clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp @@ -24,7 +24,6 @@ #include "SizeofContainerCheck.h" #include "SizeofExpressionCheck.h" #include "StaticAssertCheck.h" -#include "StringCompareCheck.h" #include "StringIntegerAssignmentCheck.h" #include "StringLiteralWithEmbeddedNulCheck.h" #include "SuspiciousEnumUsageCheck.h" @@ -75,7 +74,6 @@ public: CheckFactories.registerCheck<SizeofExpressionCheck>( "misc-sizeof-expression"); CheckFactories.registerCheck<StaticAssertCheck>("misc-static-assert"); - CheckFactories.registerCheck<StringCompareCheck>("misc-string-compare"); CheckFactories.registerCheck<StringIntegerAssignmentCheck>( "misc-string-integer-assignment"); CheckFactories.registerCheck<StringLiteralWithEmbeddedNulCheck>( |