41 lines · c
1//===----------------------------------------------------------------------===//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-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_QUALIFIEDAUTOCHECK_H10#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_QUALIFIEDAUTOCHECK_H11 12#include "../ClangTidyCheck.h"13 14namespace clang::tidy::readability {15 16/// Finds variables declared as auto that could be declared as:17/// 'auto*' or 'const auto *' and reference variables declared as:18/// 'const auto &'.19///20/// For the user-facing documentation see:21/// https://clang.llvm.org/extra/clang-tidy/checks/readability/qualified-auto.html22class QualifiedAutoCheck : public ClangTidyCheck {23public:24 QualifiedAutoCheck(StringRef Name, ClangTidyContext *Context);25 bool isLanguageVersionSupported(const LangOptions &LangOpts) const override {26 return LangOpts.CPlusPlus11;27 }28 void storeOptions(ClangTidyOptions::OptionMap &Opts) override;29 void registerMatchers(ast_matchers::MatchFinder *Finder) override;30 void check(const ast_matchers::MatchFinder::MatchResult &Result) override;31 32private:33 const bool AddConstToQualified;34 const std::vector<StringRef> AllowedTypes;35 const bool IgnoreAliasing;36};37 38} // namespace clang::tidy::readability39 40#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_QUALIFIEDAUTOCHECK_H41