diff options
author | Alexander Kornienko <alexfh@google.com> | 2015-08-31 13:17:43 +0000 |
---|---|---|
committer | Alexander Kornienko <alexfh@google.com> | 2015-08-31 13:17:43 +0000 |
commit | 0ed6c478a4699854d68718eda35d14d900fb8199 (patch) | |
tree | 331ab86afa73111be436cd571de2c656e69231c2 /clang-tools-extra/clang-tidy/readability/ReadabilityTidyModule.cpp | |
parent | f3ded811b2f865c804617d16fba981f731db3e47 (diff) | |
download | bcm5719-llvm-0ed6c478a4699854d68718eda35d14d900fb8199.tar.gz bcm5719-llvm-0ed6c478a4699854d68718eda35d14d900fb8199.zip |
[clang-tidy] Move misc-use-override and readability-shrink-to-fit to "modernize/"
These checks are focusing on migrating the code from C++98/03 to C++11, so they
belong to the modernize module.
llvm-svn: 246437
Diffstat (limited to 'clang-tools-extra/clang-tidy/readability/ReadabilityTidyModule.cpp')
-rw-r--r-- | clang-tools-extra/clang-tidy/readability/ReadabilityTidyModule.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/clang-tools-extra/clang-tidy/readability/ReadabilityTidyModule.cpp b/clang-tools-extra/clang-tidy/readability/ReadabilityTidyModule.cpp index dd37e34fdd3..6efcbfa7d58 100644 --- a/clang-tools-extra/clang-tidy/readability/ReadabilityTidyModule.cpp +++ b/clang-tools-extra/clang-tidy/readability/ReadabilityTidyModule.cpp @@ -18,7 +18,6 @@ #include "NamedParameterCheck.h" #include "RedundantSmartptrGetCheck.h" #include "RedundantStringCStrCheck.h" -#include "ShrinkToFitCheck.h" #include "SimplifyBooleanExprCheck.h" namespace clang { @@ -44,8 +43,6 @@ public: "readability-redundant-smartptr-get"); CheckFactories.registerCheck<RedundantStringCStrCheck>( "readability-redundant-string-cstr"); - CheckFactories.registerCheck<ShrinkToFitCheck>( - "readability-shrink-to-fit"); CheckFactories.registerCheck<SimplifyBooleanExprCheck>( "readability-simplify-boolean-expr"); } |