1//===--- QualifiedAutoCheck.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
9#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_QUALIFIEDAUTOCHECK_H
10#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_QUALIFIEDAUTOCHECK_H
11
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/// http://clang.llvm.org/extra/clang-tidy/checks/readability/qualified-auto.html
22class 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};
36
37} // namespace clang::tidy::readability
38
39#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_QUALIFIEDAUTOCHECK_H
40

Provided by KDAB

Privacy Policy
Learn to use CMake with our Intro Training
Find out more

source code of clang-tools-extra/clang-tidy/readability/QualifiedAutoCheck.h