clang-tools 19.0.0git
NoexceptDestructorCheck.h
Go to the documentation of this file.
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//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_PERFORMANCE_NOEXCEPTDESTRUCTORCHECK_H
10#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_PERFORMANCE_NOEXCEPTDESTRUCTORCHECK_H
11
12#include "../ClangTidyCheck.h"
14
16
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
24public:
26
27 void registerMatchers(ast_matchers::MatchFinder *Finder) override;
28
29private:
30 DiagnosticBuilder
31 reportMissingNoexcept(const FunctionDecl *FuncDecl) final override;
32 void reportNoexceptEvaluatedToFalse(const FunctionDecl *FuncDecl,
33 const Expr *NoexceptExpr) final override;
34};
35
36} // namespace clang::tidy::performance
37
38#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_PERFORMANCE_NOEXCEPTDESTRUCTORCHECK_H
The check flags destructors not marked with noexcept or marked with noexcept(expr) where expr evaluat...
void registerMatchers(ast_matchers::MatchFinder *Finder) override
Override this to register AST matchers with Finder.
Generic check which checks if the bound function decl is marked with noexcept or noexcept(expr) where...
NoexceptFunctionBaseCheck(StringRef Name, ClangTidyContext *Context)