[TargetVersion] Only enable on RISC-V and AArch64 (#115991)
[llvm-project.git] / clang-tools-extra / clang-tidy / performance / NoexceptDestructorCheck.h
blobab3850f0970a8fa05c45ad525dd7dcbd55900d34
1 //===--- NoexceptDestructorCheck.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 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_PERFORMANCE_NOEXCEPTDESTRUCTORCHECK_H
10 #define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_PERFORMANCE_NOEXCEPTDESTRUCTORCHECK_H
12 #include "../ClangTidyCheck.h"
13 #include "NoexceptFunctionBaseCheck.h"
15 namespace clang::tidy::performance {
17 /// The check flags destructors not marked with `noexcept` or marked
18 /// with `noexcept(expr)` where `expr` evaluates to `false`
19 /// (but is not a `false` literal itself).
20 ///
21 /// For the user-facing documentation see:
22 /// https://clang.llvm.org/extra/clang-tidy/checks/performance/noexcept-destructor.html
23 class NoexceptDestructorCheck : public NoexceptFunctionBaseCheck {
24 public:
25 using NoexceptFunctionBaseCheck::NoexceptFunctionBaseCheck;
27 void registerMatchers(ast_matchers::MatchFinder *Finder) override;
29 private:
30 DiagnosticBuilder
31 reportMissingNoexcept(const FunctionDecl *FuncDecl) final override;
32 void reportNoexceptEvaluatedToFalse(const FunctionDecl *FuncDecl,
33 const Expr *NoexceptExpr) final override;
36 } // namespace clang::tidy::performance
38 #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_PERFORMANCE_NOEXCEPTDESTRUCTORCHECK_H