2014-06-18 17:33:46 +08:00
|
|
|
//===--- ExplicitConstructorCheck.h - clang-tidy ----------------*- C++ -*-===//
|
2013-07-29 16:19:24 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2015-03-10 00:52:33 +08:00
|
|
|
#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_GOOGLE_EXPLICITCONSTRUCTORCHECK_H
|
|
|
|
#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_GOOGLE_EXPLICITCONSTRUCTORCHECK_H
|
2013-07-29 16:19:24 +08:00
|
|
|
|
|
|
|
#include "../ClangTidy.h"
|
|
|
|
|
|
|
|
namespace clang {
|
|
|
|
namespace tidy {
|
2015-03-05 21:46:14 +08:00
|
|
|
namespace google {
|
2013-07-29 16:19:24 +08:00
|
|
|
|
2015-08-28 02:01:58 +08:00
|
|
|
/// Checks that all single-argument constructors are explicit.
|
2013-07-29 16:19:24 +08:00
|
|
|
///
|
2016-02-25 22:31:10 +08:00
|
|
|
/// See https://google.github.io/styleguide/cppguide.html#Explicit_Constructors
|
2013-07-29 16:19:24 +08:00
|
|
|
class ExplicitConstructorCheck : public ClangTidyCheck {
|
|
|
|
public:
|
2014-09-12 16:53:36 +08:00
|
|
|
ExplicitConstructorCheck(StringRef Name, ClangTidyContext *Context)
|
|
|
|
: ClangTidyCheck(Name, Context) {}
|
2014-03-02 18:20:11 +08:00
|
|
|
void registerMatchers(ast_matchers::MatchFinder *Finder) override;
|
2014-03-05 21:01:24 +08:00
|
|
|
void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
|
2013-07-29 16:19:24 +08:00
|
|
|
};
|
|
|
|
|
2015-03-05 21:46:14 +08:00
|
|
|
} // namespace google
|
2013-07-29 16:19:24 +08:00
|
|
|
} // namespace tidy
|
|
|
|
} // namespace clang
|
|
|
|
|
2015-03-10 00:52:33 +08:00
|
|
|
#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_GOOGLE_EXPLICITCONSTRUCTORCHECK_H
|