diff options
author | Alexander Kornienko <alexfh@google.com> | 2015-03-16 22:31:16 +0000 |
---|---|---|
committer | Alexander Kornienko <alexfh@google.com> | 2015-03-16 22:31:16 +0000 |
commit | c5bc68e7ab51d34e2edfad8c883b55e433bed9bd (patch) | |
tree | 20e8246d7720b10d85abd4b47cb07ab98d3d6371 /clang-tools-extra/clang-tidy/readability/ReadabilityTidyModule.cpp | |
parent | 55cfaa255232d95d984fb143e06fd530a8a243a7 (diff) | |
download | bcm5719-llvm-c5bc68e7ab51d34e2edfad8c883b55e433bed9bd.tar.gz bcm5719-llvm-c5bc68e7ab51d34e2edfad8c883b55e433bed9bd.zip |
[clang-tidy] Move google-readability-function check to readability-named-parameter.
Summary: The relevant style rule is going to be removed, thus the check is no longer needed in the Google module. Leaving the check in readability/ in case someone needs it.
Reviewers: djasper
Reviewed By: djasper
Subscribers: curdeius, cfe-commits
Differential Revision: http://reviews.llvm.org/D8261
llvm-svn: 232431
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, 3 insertions, 0 deletions
diff --git a/clang-tools-extra/clang-tidy/readability/ReadabilityTidyModule.cpp b/clang-tools-extra/clang-tidy/readability/ReadabilityTidyModule.cpp index 0d3c46bdaf5..c82062092cc 100644 --- a/clang-tools-extra/clang-tidy/readability/ReadabilityTidyModule.cpp +++ b/clang-tools-extra/clang-tidy/readability/ReadabilityTidyModule.cpp @@ -14,6 +14,7 @@ #include "ContainerSizeEmptyCheck.h" #include "ElseAfterReturnCheck.h" #include "FunctionSizeCheck.h" +#include "NamedParameterCheck.h" #include "RedundantSmartptrGetCheck.h" #include "RedundantStringCStrCheck.h" #include "ShrinkToFitCheck.h" @@ -33,6 +34,8 @@ public: "readability-else-after-return"); CheckFactories.registerCheck<FunctionSizeCheck>( "readability-function-size"); + CheckFactories.registerCheck<readability::NamedParameterCheck>( + "readability-named-parameter"); CheckFactories.registerCheck<RedundantSmartptrGetCheck>( "readability-redundant-smartptr-get"); CheckFactories.registerCheck<RedundantStringCStrCheck>( |