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/google/GoogleTidyModule.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/google/GoogleTidyModule.cpp')
-rw-r--r-- | clang-tools-extra/clang-tidy/google/GoogleTidyModule.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/clang-tools-extra/clang-tidy/google/GoogleTidyModule.cpp b/clang-tools-extra/clang-tidy/google/GoogleTidyModule.cpp index 6757f755c84..395de361afa 100644 --- a/clang-tools-extra/clang-tidy/google/GoogleTidyModule.cpp +++ b/clang-tools-extra/clang-tidy/google/GoogleTidyModule.cpp @@ -20,7 +20,6 @@ #include "GlobalNamesInHeadersCheck.h" #include "IntegerTypesCheck.h" #include "MemsetZeroLengthCheck.h" -#include "NamedParameterCheck.h" #include "OverloadedUnaryAndCheck.h" #include "StringReferenceMemberCheck.h" #include "TodoCommentCheck.h" @@ -54,8 +53,6 @@ public: "google-runtime-memset"); CheckFactories.registerCheck<readability::AvoidCStyleCastsCheck>( "google-readability-casting"); - CheckFactories.registerCheck<readability::NamedParameterCheck>( - "google-readability-function"); CheckFactories.registerCheck<readability::TodoCommentCheck>( "google-readability-todo"); CheckFactories |