1 //===--- NoexceptDestructorCheck.h - clang-tidy -----------------*- C++ -*-===//
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
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).
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
{
25 using NoexceptFunctionBaseCheck::NoexceptFunctionBaseCheck
;
27 void registerMatchers(ast_matchers::MatchFinder
*Finder
) override
;
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