//===--- ExceptionSpecAnalyzer.h - clang-tidy -------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_UTILS_EXCEPTION_SPEC_ANALYZER_H #define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_UTILS_EXCEPTION_SPEC_ANALYZER_H #include "clang/AST/DeclCXX.h" #include "llvm/ADT/DenseMap.h" namespace clang::tidy::utils { /// This class analysis if a `FunctionDecl` has been declared implicitly through /// defaulting or explicitly as throwing or not and evaluates noexcept /// expressions if needed. Unlike the `ExceptionAnalyzer` however it can't tell /// you if the function will actually throw an exception or not. class ExceptionSpecAnalyzer { … }; } // namespace clang::tidy::utils #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_UTILS_EXCEPTION_SPEC_ANALYZER_H