2015-03-09 19:48:54 +08:00
|
|
|
//===--- BoolPointerImplicitConversionCheck.h - clang-tidy ------*- C++ -*-===//
|
2014-07-11 16:08:47 +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_MISC_BOOLPOINTERIMPLICITCONVERSIONCHECK_H
|
|
|
|
#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MISC_BOOLPOINTERIMPLICITCONVERSIONCHECK_H
|
2014-07-11 16:08:47 +08:00
|
|
|
|
|
|
|
#include "../ClangTidy.h"
|
|
|
|
|
|
|
|
namespace clang {
|
|
|
|
namespace tidy {
|
2015-03-02 20:25:03 +08:00
|
|
|
namespace misc {
|
2014-07-11 16:08:47 +08:00
|
|
|
|
|
|
|
/// \brief Checks for conditions based on implicit conversion from a bool
|
|
|
|
/// pointer to bool e.g.
|
|
|
|
/// bool *p;
|
|
|
|
/// if (p) {
|
|
|
|
/// // Never used in a pointer-specific way.
|
|
|
|
/// }
|
2015-03-09 19:48:54 +08:00
|
|
|
class BoolPointerImplicitConversionCheck : public ClangTidyCheck {
|
2014-07-11 16:08:47 +08:00
|
|
|
public:
|
2015-03-09 19:48:54 +08:00
|
|
|
BoolPointerImplicitConversionCheck(StringRef Name, ClangTidyContext *Context)
|
2014-09-12 16:53:36 +08:00
|
|
|
: ClangTidyCheck(Name, Context) {}
|
2014-07-11 16:08:47 +08:00
|
|
|
void registerMatchers(ast_matchers::MatchFinder *Finder) override;
|
|
|
|
void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
|
|
|
|
};
|
|
|
|
|
2015-03-02 20:25:03 +08:00
|
|
|
} // namespace misc
|
2014-07-11 16:08:47 +08:00
|
|
|
} // namespace tidy
|
|
|
|
} // namespace clang
|
|
|
|
|
2015-03-10 00:52:33 +08:00
|
|
|
#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MISC_BOOLPOINTERIMPLICITCONVERSIONCHECK_H
|
2014-07-11 16:08:47 +08:00
|
|
|
|