2014-07-16 00:47:09 +08:00
|
|
|
//===--- NamedParameterCheck.h - clang-tidy ---------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2015-03-17 06:31:16 +08:00
|
|
|
#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_NAMEDPARAMETERCHECK_H
|
|
|
|
#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_NAMEDPARAMETERCHECK_H
|
2014-07-16 00:47:09 +08:00
|
|
|
|
|
|
|
#include "../ClangTidy.h"
|
|
|
|
|
|
|
|
namespace clang {
|
|
|
|
namespace tidy {
|
|
|
|
namespace readability {
|
|
|
|
|
2015-08-28 02:01:58 +08:00
|
|
|
/// Find functions with unnamed arguments.
|
2014-07-16 00:47:09 +08:00
|
|
|
///
|
2015-03-17 06:31:16 +08:00
|
|
|
/// The check implements the following rule originating in the Google C++ Style
|
|
|
|
/// Guide:
|
2015-08-28 02:01:58 +08:00
|
|
|
///
|
2016-02-25 22:31:10 +08:00
|
|
|
/// https://google.github.io/styleguide/cppguide.html#Function_Declarations_and_Definitions
|
2015-03-17 06:31:16 +08:00
|
|
|
///
|
|
|
|
/// All parameters should be named, with identical names in the declaration and
|
|
|
|
/// implementation.
|
|
|
|
///
|
2014-07-16 00:47:09 +08:00
|
|
|
/// Corresponding cpplint.py check name: 'readability/function'.
|
|
|
|
class NamedParameterCheck : public ClangTidyCheck {
|
|
|
|
public:
|
2014-09-12 16:53:36 +08:00
|
|
|
NamedParameterCheck(StringRef Name, ClangTidyContext *Context)
|
|
|
|
: ClangTidyCheck(Name, Context) {}
|
2014-07-16 00:47:09 +08:00
|
|
|
void registerMatchers(ast_matchers::MatchFinder *Finder) override;
|
|
|
|
void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace readability
|
|
|
|
} // namespace tidy
|
|
|
|
} // namespace clang
|
|
|
|
|
2015-03-17 06:31:16 +08:00
|
|
|
#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_NAMEDPARAMETERCHECK_H
|