clang-tools 19.0.0git
CleanupCtadCheck.h
Go to the documentation of this file.
1//===--- CleanupCtadCheck.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_ABSEIL_CLEANUPCTADCHECK_H
10#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_ABSEIL_CLEANUPCTADCHECK_H
11
12#include "../utils/TransformerClangTidyCheck.h"
13
14namespace clang::tidy::abseil {
15
16/// Suggests switching the initialization pattern of `absl::Cleanup`
17/// instances from the factory function to class template argument
18/// deduction (CTAD), in C++17 and higher.
19///
20/// For the user-facing documentation see:
21/// http://clang.llvm.org/extra/clang-tidy/checks/abseil/cleanup-ctad.html
23public:
24 CleanupCtadCheck(StringRef Name, ClangTidyContext *Context);
25
26 bool isLanguageVersionSupported(const LangOptions &LangOpts) const override {
27 return LangOpts.CPlusPlus17;
28 }
29};
30
31} // namespace clang::tidy::abseil
32
33#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_ABSEIL_CLEANUPCTADCHECK_H
llvm::SmallString< 256U > Name
Every ClangTidyCheck reports errors through a DiagnosticsEngine provided by this context.
Suggests switching the initialization pattern of absl::Cleanup instances from the factory function to...
bool isLanguageVersionSupported(const LangOptions &LangOpts) const override
Override this to disable registering matchers and PP callbacks if an invalid language version is bein...
A base class for defining a ClangTidy check based on a RewriteRule.