ImplicitBoolConversionCheck.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //===--- ImplicitBoolConversionCheck.h - clang-tidy--------------*- C++ -*-===//
  2. //
  3. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  4. // See https://llvm.org/LICENSE.txt for license information.
  5. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  6. //
  7. //===----------------------------------------------------------------------===//
  8. #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_IMPLICIT_BOOL_CONVERSION_H
  9. #define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_IMPLICIT_BOOL_CONVERSION_H
  10. #include "../ClangTidyCheck.h"
  11. namespace clang::tidy::readability {
  12. /// Checks for use of implicit bool conversions in expressions.
  13. ///
  14. /// For the user-facing documentation see:
  15. /// http://clang.llvm.org/extra/clang-tidy/checks/readability/implicit-bool-conversion.html
  16. class ImplicitBoolConversionCheck : public ClangTidyCheck {
  17. public:
  18. ImplicitBoolConversionCheck(StringRef Name, ClangTidyContext *Context);
  19. bool isLanguageVersionSupported(const LangOptions &LangOpts) const override {
  20. return LangOpts.Bool;
  21. }
  22. void storeOptions(ClangTidyOptions::OptionMap &Opts) override;
  23. void registerMatchers(ast_matchers::MatchFinder *Finder) override;
  24. void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
  25. private:
  26. void handleCastToBool(const ImplicitCastExpr *CastExpression,
  27. const Stmt *ParentStatement, ASTContext &Context);
  28. void handleCastFromBool(const ImplicitCastExpr *CastExpression,
  29. const ImplicitCastExpr *FurtherImplicitCastExpression,
  30. ASTContext &Context);
  31. const bool AllowIntegerConditions;
  32. const bool AllowPointerConditions;
  33. };
  34. } // namespace clang::tidy::readability
  35. #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_IMPLICIT_BOOL_CONVERSION_H